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
?
Asked
Active
Viewed 158 times
0

Samer
- 1,923
- 3
- 34
- 54
-
1See [relevant-boost-features-vs-c11](http://stackoverflow.com/questions/8851670/relevant-boost-features-vs-c11) for what is already included and planned to be in c++11/14/17. – doqtor Jul 27 '15 at 23:15
1 Answers
4
No. There is no notion of "Shared memory" in the standard. And thus no facilities to work with it.

Ilya Popov
- 3,765
- 1
- 17
- 30