cut out a syscall on thread creation in the case where guard size is 0
[musl] / src / thread / sem_unlink.c
1 #include <semaphore.h>
2 #include <sys/mman.h>
3
4 int sem_unlink(const char *name)
5 {
6         return shm_unlink(name);
7 }