Linux���统下查看IPC使用情况的方法
1. SYS-V 方法
可以通过 ipcs 命令来查看 SYS-V 相关的 IPC 使用情况
2. POSIX 方法
1). message queue
Linux 提供了 mqueue 的文件系统类型,可以通过它来观察到 POSIX 消息队列的使用情况
view plaincopy to clipboardprint?
$ mkdir /dev/mqueue
$ mount -t mqueue none /dev/mqueue
$ ls -l /dev/mqueue
-r-------- 1 root root 80 2008-06-18 11:46 /dev/mqueue/smith_event.mq
2). shared memory
Linux 提供了 shm 的文件系统类型,通常已经被 mount 到系统中,可以观察 /dev/shm 来查看 POSIX 共享内存的使用情况
view plaincopy to clipboardprint?
$ ls -l /dev/shm/
-rw-r--r-- 1 root root 1073741824 2008-06-18 11:46 smith.shm1