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
merge setuid variants
[trinity.git]
/
syscalls
/
newfstat.c
blob
ece4b3ff790262d661a3d1c2ea8a341ccadfc8cc
1
/*
2
* SYSCALL_DEFINE2(newfstat, unsigned int, fd, struct stat __user *, statbuf)
3
*/
4
#include
"sanitise.h"
5
6
struct
syscallentry syscall_newfstat
= {
7
.
name
=
"newfstat"
,
8
.
num_args
=
2
,
9
.
arg1name
=
"fd"
,
10
.
arg1type
=
ARG_FD
,
11
.
arg2name
=
"statbuf"
,
12
.
arg2type
=
ARG_ADDRESS
,
13
.
flags
=
NEED_ALARM
,
14
.
group
=
GROUP_VFS
,
15
};