Search code examples
c++c++11boostshared-memoryboost-interprocess

is there a replacement of shared_memory_object in c++11


I am trying to convert a c++ code to c++11 style and I would like to stop using some boost related libraries. I know c++11 borrowed a lot of concepts from boost. Is there a replacement of shared_memory_object in c++11?


Solution

  • No. There is no notion of "Shared memory" in the standard. And thus no facilities to work with it.