Updated: October 28, 2024 |
Remove the name of a shared memory object
#include <sys/mman.h> int shm_unlink( const char * name );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The shm_unlink() function removes the name of the shared memory object specified by name. After removing the name, you can't use shm_open() to access the object.
This function doesn't affect any references to the shared memory object (i.e., file descriptors or memory mappings). The reference count is on the underlying object; there's no reference count on the name. The name counts as one of the references, so the reference count is decremented by this function, but the shared memory isn't actually deleted until you remove all open and mmap references to it.
See shm_open().
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |