repo.or.cz
/
trinity.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
note a leak that needs fixing eventually
[trinity.git]
/
syscalls
/
semop.c
blob
302d58407ec66408f7df9231818f560d05c106fd
1
/*
2
* SYSCALL_DEFINE3(semop, int, semid, struct sembuf __user *, tsops, unsigned, nsops)
3
*/
4
#include
"sanitise.h"
5
6
struct
syscallentry syscall_semop
= {
7
.
name
=
"semop"
,
8
.
num_args
=
3
,
9
.
arg1name
=
"semid"
,
10
.
arg2name
=
"tsops"
,
11
.
arg2type
=
ARG_ADDRESS
,
12
.
arg3name
=
"nsops"
,
13
};