ipcs

deleting shared memory with ipcrm in Linux

Hello, I am working with a shared memory application, and to delete the segments I use the following command: ipcrm -M 0x0000162e (this is the key) But I do not if I am doing the things right because when I run ipcs I see the same segment but with the key 0x0000000, is the memory segment really delete?. When I run several times my ap...

why are some posix shared memory segments and posix semaphores not visible to ipcs

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? /* Server main function for implemen...

Need to initiate seperate background processes using .NET Remoting for Interprocess Communication

Hello, I need to solve simplest problem. I have some abstract factory which will initiate on demand seperate processes(.NET EXE's). It means abstract factory needs to initiate processes at any time and let the newly created processes be able to communicate with process in which abstract factory reside. This interprocess communication is...