remove [64] cleanup TODO
[trinity.git] / syscalls / inotify_init1.c
bloba27c904a5ee07084450c91e94347c4c585283844
1 /*
2 * SYSCALL_DEFINE1(inotify_init1, int, flags)
3 */
5 #define IN_CLOEXEC 02000000
6 #define IN_NONBLOCK 04000
8 #include "sanitise.h"
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 },
19 .group = GROUP_VFS,