如何知道哪些进程打开/使用特定信号量?
我们有一个由281个进程打开的信号量,有没有办法获取这些进程的所有pid?
ipcs -a|grep 67108878
s 67108878 0xcef73014 --ra-ra---- oracle dba oracle dba 281 17:54:58 9:27:30
We have a semaphore opened by 281 processes, is there any way to get all the pids of these processes?
ipcs -a|grep 67108878
s 67108878 0xcef73014 --ra-ra---- oracle dba oracle dba 281 17:54:58 9:27:30
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Windows 上,使用 SysInternals 中的 Handle.exe 实用程序,使用以下语法:
处理 -a SemaphoreName
示例,用于查找 这个问题在stackoverflow上:
On Windows, using the Handle.exe utility from SysInternals, use this syntax:
handle -a SemaphoreName
example for finding the semaphores illustrated in the accepted answer of this question on stackoverflow: