| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 1 | /**************************************************************************** | 
|  | 2 | **************************************************************************** | 
|  | 3 | *** | 
|  | 4 | ***   This header was automatically generated from a Linux kernel header | 
|  | 5 | ***   of the same name, to make information necessary for userspace to | 
|  | 6 | ***   call into the kernel available to libc.  It contains only constants, | 
|  | 7 | ***   structures, and macros generated from the original header, and thus, | 
|  | 8 | ***   contains no copyrightable information. | 
|  | 9 | *** | 
|  | 10 | ***   To edit the content of this header, modify the corresponding | 
|  | 11 | ***   source file (e.g. under external/kernel-headers/original/) then | 
|  | 12 | ***   run bionic/libc/kernel/tools/update_all.py | 
|  | 13 | *** | 
|  | 14 | ***   Any manual change here will be lost the next time this script will | 
|  | 15 | ***   be run. You've been warned! | 
|  | 16 | *** | 
|  | 17 | **************************************************************************** | 
|  | 18 | ****************************************************************************/ | 
|  | 19 | #ifndef _UAPI_LINUX_INOTIFY_H | 
|  | 20 | #define _UAPI_LINUX_INOTIFY_H | 
|  | 21 | #include <linux/fcntl.h> | 
|  | 22 | #include <linux/types.h> | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 23 | struct inotify_event { | 
| Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 24 | __s32 wd; | 
|  | 25 | __u32 mask; | 
|  | 26 | __u32 cookie; | 
| Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 27 | __u32 len; | 
|  | 28 | char name[0]; | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 29 | }; | 
|  | 30 | #define IN_ACCESS 0x00000001 | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 31 | #define IN_MODIFY 0x00000002 | 
|  | 32 | #define IN_ATTRIB 0x00000004 | 
|  | 33 | #define IN_CLOSE_WRITE 0x00000008 | 
|  | 34 | #define IN_CLOSE_NOWRITE 0x00000010 | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 35 | #define IN_OPEN 0x00000020 | 
|  | 36 | #define IN_MOVED_FROM 0x00000040 | 
|  | 37 | #define IN_MOVED_TO 0x00000080 | 
|  | 38 | #define IN_CREATE 0x00000100 | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 39 | #define IN_DELETE 0x00000200 | 
|  | 40 | #define IN_DELETE_SELF 0x00000400 | 
|  | 41 | #define IN_MOVE_SELF 0x00000800 | 
|  | 42 | #define IN_UNMOUNT 0x00002000 | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 43 | #define IN_Q_OVERFLOW 0x00004000 | 
|  | 44 | #define IN_IGNORED 0x00008000 | 
|  | 45 | #define IN_CLOSE (IN_CLOSE_WRITE | IN_CLOSE_NOWRITE) | 
|  | 46 | #define IN_MOVE (IN_MOVED_FROM | IN_MOVED_TO) | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 47 | #define IN_ONLYDIR 0x01000000 | 
|  | 48 | #define IN_DONT_FOLLOW 0x02000000 | 
|  | 49 | #define IN_EXCL_UNLINK 0x04000000 | 
| Christopher Ferris | 9ce2884 | 2018-10-25 12:11:39 -0700 | [diff] [blame] | 50 | #define IN_MASK_CREATE 0x10000000 | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 51 | #define IN_MASK_ADD 0x20000000 | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 52 | #define IN_ISDIR 0x40000000 | 
|  | 53 | #define IN_ONESHOT 0x80000000 | 
| Tao Bao | d7db594 | 2015-01-28 10:07:51 -0800 | [diff] [blame] | 54 | #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) | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 55 | #define IN_CLOEXEC O_CLOEXEC | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 56 | #define IN_NONBLOCK O_NONBLOCK | 
| Christopher Ferris | 76a1d45 | 2018-06-27 14:12:29 -0700 | [diff] [blame] | 57 | #define INOTIFY_IOC_SETNEXTWD _IOW('I', 0, __s32) | 
| Ben Cheng | 655a7c0 | 2013-10-16 16:09:24 -0700 | [diff] [blame] | 58 | #endif |