Reputation: 987
I am doing assignment in which I am using POSIX named semaphore, but it is not showing me list when I enter ipcs -s command.
ipcs -s
Please help me to get entry of named semaphore. Where will I get that?
Upvotes: 3
Views: 1475
Reputation: 8180
ipcs is for System V semaphores, you are using POSIX semaphores. For the differences, see here.
ipcs
Upvotes: 4