umask 会影响消息队列吗?
在 Ubuntu Linux 中,更改系统的 umask(例如通过在程序中调用 umask())是否会影响系统上消息队列等 IPC 设施的创建和使用?
In Ubuntu Linux, does changing umask of the system (by calling umask() in a program for example), affect the creation and usage of the IPC facilities like message queues on the system?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自手册页
因此,如果您的 IPC 使用上述内容,那么可以。你能说得更具体一些吗?
strace myprogram | 跟踪我的程序egrep 'mq_open|sem_open|...' 应该告诉您是否直接或间接调用其中任何一个。
From the man page
So if your IPC uses the above, then yes. Can you be more specific?
strace myprogram | egrep 'mq_open|sem_open|...'
should tell you if you're calling any of these, directly or indirectly.