https://bz.apache.org/bugzilla/show_bug.cgi?id=62044
--- Comment #2 from [email protected] --- looking at the code for apr_shm_remove at https://github.com/apache/apr/blob/1.6.1/shmem/unix/shm.c#L436 I am reminded that /* Indicate that the segment is to be destroyed as soon * as all processes have detached. This also disallows any * new attachments to the segment. */ if (shmctl(shmid, IPC_RMID, NULL) == -1) { goto shm_remove_failed; } So, while the remove can succeed, although I note the return status isn't tested here, the key will hang around until the last process detaches, so the defensive measure isn't effective. So back to the original question, why does Apache think this slot isn't already in the global list. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
