repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix erroneous pthread_cond_wait mutex waiter count logic due to typo
[musl.git]
/
src
/
ipc
/
shmdt.c
blob
572381378e1d4365255b9015749400645adfa3d8
1
#include <sys/shm.h>
2
#include
"syscall.h"
3
#include
"ipc.h"
4
5
int
shmdt
(
const void
*
addr
)
6
{
7
#ifndef SYS_ipc
8
return
syscall
(
SYS_shmdt
,
addr
);
9
#else
10
return
syscall
(
SYS_ipc
,
IPCOP_shmdt
,
0
,
0
,
0
,
addr
);
11
#endif
12
}