blob: db534173de0c14bf9a50644569b31a252805f653 [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001/****************************************************************************
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 ****************************************************************************
11 ****************************************************************************/
12#ifndef _LINUX_INOTIFY_H
13#define _LINUX_INOTIFY_H
Ben Cheng4b29af02012-03-07 16:14:53 -080014
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080015#include <linux/types.h>
Ben Cheng4b29af02012-03-07 16:14:53 -080016
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080017struct inotify_event {
18 __s32 wd;
19 __u32 mask;
20 __u32 cookie;
21 __u32 len;
22 char name[0];
23};
Ben Cheng4b29af02012-03-07 16:14:53 -080024
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080025#define IN_ACCESS 0x00000001
26#define IN_MODIFY 0x00000002
27#define IN_ATTRIB 0x00000004
28#define IN_CLOSE_WRITE 0x00000008
29#define IN_CLOSE_NOWRITE 0x00000010
30#define IN_OPEN 0x00000020
31#define IN_MOVED_FROM 0x00000040
32#define IN_MOVED_TO 0x00000080
33#define IN_CREATE 0x00000100
34#define IN_DELETE 0x00000200
35#define IN_DELETE_SELF 0x00000400
36#define IN_MOVE_SELF 0x00000800
Ben Cheng4b29af02012-03-07 16:14:53 -080037
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080038#define IN_UNMOUNT 0x00002000
39#define IN_Q_OVERFLOW 0x00004000
40#define IN_IGNORED 0x00008000
Ben Cheng4b29af02012-03-07 16:14:53 -080041
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080042#define IN_CLOSE (IN_CLOSE_WRITE | IN_CLOSE_NOWRITE)
43#define IN_MOVE (IN_MOVED_FROM | IN_MOVED_TO)
Ben Cheng4b29af02012-03-07 16:14:53 -080044
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080045#define IN_ONLYDIR 0x01000000
46#define IN_DONT_FOLLOW 0x02000000
47#define IN_MASK_ADD 0x20000000
48#define IN_ISDIR 0x40000000
49#define IN_ONESHOT 0x80000000
Ben Cheng4b29af02012-03-07 16:14:53 -080050
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080051#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 Cheng4b29af02012-03-07 16:14:53 -080052
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080053#endif