is it possible to load a shared library on a shared memory?
Posted
by quimm2003
on Stack Overflow
See other posts from Stack Overflow
or by quimm2003
Published on 2010-05-15T08:51:55Z
Indexed on
2010/05/15
8:54 UTC
Read the original article
Hit count: 204
I have a server and a client written in C. I try to load a shared library in the server and then pass library function pointers to the client. This way I can change the library without have to compile the client.
Because of every process has its own separate memory space, I wonder if it is possible to load a shared library on a shared memory, pass the function pointers and map the shared memory on the client and then make the client execute the code of the library loaded by the server.
© Stack Overflow or respective owner