I was working on shared memory and this question came in my mind so thought of asking from experts:

  1. What happens to the shared memory if one of the process sharing the memory is killed? What happens if we do hard-kill rather than normal-kill?

  2. Is it dependent on the mechanism we use for shared memory?

If it matters, I am working on Windows.

link|improve this question

1  
The OS should cleanup all resources (handles, sockets, shm, memory, etc) that it controls irregardless of how the process is terminated. Techniques that are outside the OS may not have this protection. – pst Jun 27 '11 at 5:09
feedback

1 Answer

up vote 1 down vote accepted

Provided at least one other thread in another process has an open handle to the file mapping, I would expect the shared memory to remain intact.

link|improve this answer
It means another process would be able to use the shared memory block irrespective of the state of other process(es)? In other words, process will not have any inter dependency in accessing shared memory block? – Pulkit Gupta Jun 27 '11 at 5:50
1  
The shared memory doesn't impose concurrency controls; it's up to the processes/threads to ensure safe access. Often you'd use a mutex object for this. If the process holding the mutex croaks the mutex gets into abandoned state as reported by others. – seand Jun 27 '11 at 5:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.