获取 POSIX 信号量的名称

发布于 2024-10-19 11:41:41 字数 68 浏览 1 评论 0 原文

有没有办法在 C++ 中获取 POSIX 命名信号量的 ID(sem_t)?

感谢大家并致以最诚挚的问候。

is there any way to obtain a POSIX named semaphore's name given its ID (sem_t) within C++?

Thanks to all and best regards.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

羅雙樹 2024-10-26 11:41:41

不幸的是,没有。 sem_name (或者无论你怎么称呼它)函数rel="nofollow noreferrer">POSIX 信号量规范。也没有特定于 Linux 的解决方法,因为它也不提供 sem_name,并且不会将名称存储在 sem_t 中,该名称在 as

typedef union
{
  char __size[__SIZEOF_SEM_T];
  long int __align;
} sem_t;

文件 /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 no sem_name either and it does not store the name in the sem_t, which is defined in <bits/semaphore.h> as

typedef union
{
  char __size[__SIZEOF_SEM_T];
  long int __align;
} sem_t;

The 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文