Setting permission for shared memory created by boost

∥☆過路亽.° 提交于 2019-11-30 13:54:44

问题


We open a boost shared memory that was created by another process like this

  boost::interprocess::managed_shared_memory segment(boost::interprocess::open_only, "SharedMem");

But if the process that created the shared memory was a root user, then the process reading it, if it was a normal user, will fail with the reason as:

terminate called after throwing an instance of 'boost::interprocess::interprocess_exception'
what():  Permission denied

What should i do to avoid this? that is to give permission to the shared memory to all?


回答1:


If you look at the shared_memory constructor, it takes a permissions object. boost::interprocess::permissions::set_unrestricted is probably what you are looking for

void set_unrestricted();
//Sets permissions to unrestricted access:
//        A null DACL for windows or 0666 for UNIX.

According to this, it was added in 1.45 version



来源:https://stackoverflow.com/questions/8758896/setting-permission-for-shared-memory-created-by-boost

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!