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
/
semop.c
blob
5f0c7deaf308a38723726139bebc4ad03f3576dd
1
#include <sys/sem.h>
2
#include
"syscall.h"
3
#include
"ipc.h"
4
5
int
semop
(
int
id
,
struct
sembuf
*
buf
,
size_t
n
)
6
{
7
#ifndef SYS_ipc
8
return
syscall
(
SYS_semop
,
id
,
buf
,
n
);
9
#else
10
return
syscall
(
SYS_ipc
,
IPCOP_semop
,
id
,
n
,
0
,
buf
);
11
#endif
12
}