Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何列出属于 Mac OS X 上特定进程的 POSIX 命名信号量?
我知道这个ipcs -s命令,但它似乎列出了 System V 信号量,我猜它与 POSIX 不同,因为我不认识我自己命名的信号量。
ipcs -s
我使用sem_open//函数sem_close。sem_wait
sem_open
sem_close
sem_wait
有没有办法列出属于特定进程的“句柄”,比如 Windows 平台上的 Process Explorer?
你可以做到lsof -p <pid> | grep PSXSEM。lsof特权运行时可能更可靠,您不妨使用sudo lsof ....
lsof -p <pid> | grep PSXSEM
lsof
sudo lsof ...