When I have several processes going on using a shared memory, and I detach all of them but one.
- Does it make sense to detach the last process before removing the shared memory with
shmctl()
(with that process)? - If it doesn't make sense, is it possible to remove the shared memory after detaching from it?
The manual entry for
shmctl()
doesn't say anything about 'at most one process using it' or 'no processes attached to it'. However, the system can't completely disrupt already running processes that are attached to the shared memory segment.You only need the
shmid
(shared memory segment ID) returned byshmget()
; you don't need the shared memory to be attached (so you could already have runshmdt()
).Testing on a Mac (macOS Sierra 10.12.3, GCC 6.3.0) with code derived from a previous question (Making a shared data structure in C), I added an option
-t time
to make the process sleep for a specifiable period. Then I created a shared memory segment and left the process holding it open. I usedipcs -m
to see that the segment existed. Then I deleted the segment; it was successful. Rechecking withipcs -m
, the segment had changed from shared toIPC_PRIVATE
. When the sleeping process completed, the shared memory segment was automatically deleted (as private segments always are).Whether this is what happens on other systems, I'm not sure, but it looks like plausible behaviour. Something similar is likely to occur.
Incidentally, running one process to create the segment and a second to just attach to it, both running in sleep mode, didn't really change the observed results. The shared memory segment key changed to 0, the processes were unaffected, and the segment was deleted after both had completed.