设置boost创建的共享内存的权限

时间:2012-01-06 13:56:16

标签: c++ permissions boost-interprocess

我们打开一个由另一个进程创建的提升共享内存,如

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

但是如果创建共享内存的进程是root用户,则读取它的进程(如果是普通用户)将失败,原因如下:

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

我该怎么做才能避免这种情况?那是为所有人提供共享内存的权限吗?

1 个答案:

答案 0 :(得分:6)

如果您查看 shared_memory constructor,则需要permissions个对象。 boost::interprocess::permissions::set_unrestricted可能就是你要找的东西

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

根据this,它是在1.45版本中添加的