获取 POSIX 信号量的名称
有没有办法在 C++ 中获取 POSIX 命名信号量的 ID(sem_t)?
感谢大家并致以最诚挚的问候。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法在 C++ 中获取 POSIX 命名信号量的 ID(sem_t)?
感谢大家并致以最诚挚的问候。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
不幸的是,没有。 sem_name (或者无论你怎么称呼它)函数rel="nofollow noreferrer">POSIX 信号量规范。也没有特定于 Linux 的解决方法,因为它也不提供
sem_name
,并且不会将名称存储在sem_t
中,该名称在
as文件
/proc/sys/kernel/sem
和/proc/sysvipc/sem
似乎也不包含此信息。因此,最好的选择是在执行 sem_open 时自己存储名称,最好是在包装类中。有关示例包装类,请参阅此答案。
Unfortunately, no. There is no
sem_name
(or whatever you'd call it) function in the POSIX semaphore spec. There is also no Linux-specific workaround, since it provides nosem_name
either and it does not store the name in thesem_t
, which is defined in<bits/semaphore.h>
asThe files
/proc/sys/kernel/sem
and/proc/sysvipc/sem
don't seem to contain this information either.So, your best option is to store the name yourself when doing
sem_open
, preferably in a wrapper class. See this answer for an example wrapper class.