8 lines
109 B
C
8 lines
109 B
C
|
#include <semaphore.h>
|
||
|
#include <sys/mman.h>
|
||
|
|
||
|
int sem_unlink(const char *name)
|
||
|
{
|
||
|
return shm_unlink(name);
|
||
|
}
|