
Thanks, that resolves my problem. 2010/3/18 Steven Watanabe <watanabesj@gmail.com>
AMDG
med ennemri wrote:
I have a problem using managed_shared_memory , I can only read strings that has size less that 16 characters.
This is my server code
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #include <boost/interprocess/managed_shared_memory.hpp> #include <utility> #include <iostream>
int main () { using namespace boost::interprocess; typedef std::pair<std::string, int> FileState;
You need to use boost::interprocess::basic_string parameterized with the correct allocator. It works for small string because of SBO, (i.e. small srings are stored within the string class itself, and do not allocate any memory.).
In Christ, Steven Watanabe
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users