ipc - Create shared memory for several processes by using only native C++ operations? -
how can allocate shared memory accessible multiple processes using native c++ operations? or should use os api in case of inter thread synchronization objects such mutex , semaphores are? (i mean can not use bool instead of mutex. os has specific types organizing synchronization.)
there no notion of "shared memory", or "process", in "only native c++". platform-specific concepts.
you can try boost's interprocess library useful abstractions.
Comments
Post a Comment