In shared memory system, when two processes share a shared memory system, after one process is killed, how the other running process will be notified of killed process by shared memory system ?
|
Shared memory, as the name suggests, is a memory, a passive object. You need to use a mutex to keep track of activity of another application. Each application creates its own mutex and waits for another process's one. If the application is terminated, the mutex state turns to Abandoned. |
|||||
|
|
One way is to have a parent/controlling process start all other processes as children. When any child dies, the parent will receive PostgreSQL follows this design pattern with its postmaster and worker processes. Note that on most Unix systems, mutexes won't be changed/unlocked by the OS during process death. Semaphores offer an UNDO function, but they are admittedly much heavier than mutexes. YMMV. |
|||
|