I'm currently implementing a Class-/Objectmanager. Now i came across with a strange problem and I wanted to hear your opinions on this

First the basic design:
I have a Classmanager, which obviously manages the classes. (creating classes, adding/deleting functions, ...). Then there're objects, which are just instances of the a specific class.
Now the problem is with the functions. How should I access them as they might be in different processes. I came up with this solutions:
- Copy the functions over to kernel space
-> Not good if the function relies on some other function/variables in the process
- Only allow functions from processes in kernel space
-> Not good in a microkernel
- Hold a context-structure of the process and switch to the process if the function is called
-> Sounds like the best solution, but this has a high Overhead.
Do you have any idea's ?