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
remove [64] cleanup TODO
[trinity.git]
/
syscalls
/
pwritev.c
blob
ebb3a7dc2caa7deda8026d0984837c356392cf00
1
/*
2
* SYSCALL_DEFINE5(pwritev, unsigned long, fd, const struct iovec __user *, vec,
3
unsigned long, vlen, unsigned long, pos_l, unsigned long, pos_h)
4
*/
5
#include
"sanitise.h"
6
7
struct
syscallentry syscall_pwritev
= {
8
.
name
=
"pwritev"
,
9
.
num_args
=
5
,
10
.
arg1name
=
"fd"
,
11
.
arg1type
=
ARG_FD
,
12
.
arg2name
=
"vec"
,
13
.
arg2type
=
ARG_IOVEC
,
14
.
arg3name
=
"vlen"
,
15
.
arg3type
=
ARG_IOVECLEN
,
16
.
arg4name
=
"pos_l"
,
17
.
arg5name
=
"pos_h"
,
18
.
flags
=
NEED_ALARM
,
19
};