Windows 中的进程间信号量

发布于 2024-11-26 13:25:22 字数 169 浏览 1 评论 0原文

Windows API 中是否有任何类型的进程信号量?我找到了这个

但它是仅适用于我所理解的线程,提前感谢您的帮助

is there any kind of semaphore for processes in Windows API? I found this one

but it is only for thread as I understood, thanks in advance for any help

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

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

发布评论

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

评论(2

世界如花海般美丽 2024-12-03 13:25:22

查看CreateSemaphore()函数的帮助:
http://msdn.microsoft.com/en-我们/库/ms682438(v=VS.85).aspx
在备注部分,从“多个进程可以处理......”开始。

您会在那里找到 3 个案例 - 它们都很有用。

Look at the the help for CreateSemaphore() function:
http://msdn.microsoft.com/en-us/library/ms682438(v=VS.85).aspx
in the Remarks section, starting from "Multiple processes can handles....".

You'll find 3 cases there - all of them useful.

软甜啾 2024-12-03 13:25:22

使用 CreateSemaphoreCreateSemaphoreEx 创建一个命名信号量。您可以通过再次调用 CreateSemaphore 使用该名称从其他位置访问信号量。

Use CreateSemaphore or CreateSemaphoreEx to create a named semaphore. You can use the name to access the semaphore from other locations by calling CreateSemaphore a second time.

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