1 /*
2  * This file is auto-generated. Modifications will be lost.
3  *
4  * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5  * for more information.
6  */
7 #ifndef _UAPI_LINUX_INOTIFY_H
8 #define _UAPI_LINUX_INOTIFY_H
9 #include <linux/fcntl.h>
10 #include <linux/types.h>
11 struct inotify_event {
12   __s32 wd;
13   __u32 mask;
14   __u32 cookie;
15   __u32 len;
16   char name[];
17 };
18 #define IN_ACCESS 0x00000001
19 #define IN_MODIFY 0x00000002
20 #define IN_ATTRIB 0x00000004
21 #define IN_CLOSE_WRITE 0x00000008
22 #define IN_CLOSE_NOWRITE 0x00000010
23 #define IN_OPEN 0x00000020
24 #define IN_MOVED_FROM 0x00000040
25 #define IN_MOVED_TO 0x00000080
26 #define IN_CREATE 0x00000100
27 #define IN_DELETE 0x00000200
28 #define IN_DELETE_SELF 0x00000400
29 #define IN_MOVE_SELF 0x00000800
30 #define IN_UNMOUNT 0x00002000
31 #define IN_Q_OVERFLOW 0x00004000
32 #define IN_IGNORED 0x00008000
33 #define IN_CLOSE (IN_CLOSE_WRITE | IN_CLOSE_NOWRITE)
34 #define IN_MOVE (IN_MOVED_FROM | IN_MOVED_TO)
35 #define IN_ONLYDIR 0x01000000
36 #define IN_DONT_FOLLOW 0x02000000
37 #define IN_EXCL_UNLINK 0x04000000
38 #define IN_MASK_CREATE 0x10000000
39 #define IN_MASK_ADD 0x20000000
40 #define IN_ISDIR 0x40000000
41 #define IN_ONESHOT 0x80000000
42 #define IN_ALL_EVENTS (IN_ACCESS | IN_MODIFY | IN_ATTRIB | IN_CLOSE_WRITE | IN_CLOSE_NOWRITE | IN_OPEN | IN_MOVED_FROM | IN_MOVED_TO | IN_DELETE | IN_CREATE | IN_DELETE_SELF | IN_MOVE_SELF)
43 #define IN_CLOEXEC O_CLOEXEC
44 #define IN_NONBLOCK O_NONBLOCK
45 #define INOTIFY_IOC_SETNEXTWD _IOW('I', 0, __s32)
46 #endif
47