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
move_pages: just use calloc
[trinity.git]
/
syscalls
/
inotify_init1.c
blob
a27c904a5ee07084450c91e94347c4c585283844
1
/*
2
* SYSCALL_DEFINE1(inotify_init1, int, flags)
3
*/
4
5
#define IN_CLOEXEC 02000000
6
#define IN_NONBLOCK 04000
7
8
#include
"sanitise.h"
9
10
struct
syscallentry syscall_inotify_init1
= {
11
.
name
=
"inotify_init1"
,
12
.
num_args
=
1
,
13
.
arg1name
=
"flags"
,
14
.
arg1type
=
ARG_LIST
,
15
.
arg1list
= {
16
.
num
=
2
,
17
.
values
= {
IN_CLOEXEC
,
IN_NONBLOCK
},
18
},
19
.
group
=
GROUP_VFS
,
20
};