I built a client server application using posix shared memory and posix unnamed semaphores with pshared=1. The semaphores are placed inside the shared memory. The program runs fine, but when I type ipcs -m or ipcs -s, I do not see any shared memory segments or semaphores that I created.
Why is it so?
|
1
|
|
||
|
|
|
ipcs displays information on the System V IPC system. POSIX semaphores and shared memory are an independent (and better) system which is not monitored by 'ipcs'. |
||
|
|
|
|
/* Server main function for implementing client server program using Posix Shared Memory and Posix Unnamed Semaphores*/ include "shm_sem.h"int main(int argc,char ** argv) // initialize the semaphores in shared memory
} |
|||
|
|
|
|
A couple of questions:
Update: Actually, after reading this thread I'm not sure ipcs is supposed to be able to show the POSIX semaphores. I tried your sample code (with some edits to fix compile errors) and you can see the shared memory segment in the |
||||||
|
