blob: 860f7438bd51c8317d2d2d4b908e6dec8b5e2718 [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 ***
Ben Cheng654325d2012-03-07 21:13:49 -080010 *** 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 ***
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080017 ****************************************************************************
18 ****************************************************************************/
19#ifndef _LINUX_INOTIFY_H
20#define _LINUX_INOTIFY_H
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080021#include <linux/types.h>
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080022struct inotify_event {
Ben Cheng654325d2012-03-07 21:13:49 -080023/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080024 __s32 wd;
25 __u32 mask;
26 __u32 cookie;
27 __u32 len;
Ben Cheng654325d2012-03-07 21:13:49 -080028/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080029 char name[0];
30};
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080031#define IN_ACCESS 0x00000001
32#define IN_MODIFY 0x00000002
Ben Cheng654325d2012-03-07 21:13:49 -080033/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080034#define IN_ATTRIB 0x00000004
35#define IN_CLOSE_WRITE 0x00000008
36#define IN_CLOSE_NOWRITE 0x00000010
37#define IN_OPEN 0x00000020
Ben Cheng654325d2012-03-07 21:13:49 -080038/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080039#define IN_MOVED_FROM 0x00000040
40#define IN_MOVED_TO 0x00000080
41#define IN_CREATE 0x00000100
42#define IN_DELETE 0x00000200
Ben Cheng654325d2012-03-07 21:13:49 -080043/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080044#define IN_DELETE_SELF 0x00000400
45#define IN_MOVE_SELF 0x00000800
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080046#define IN_UNMOUNT 0x00002000
47#define IN_Q_OVERFLOW 0x00004000
Ben Cheng654325d2012-03-07 21:13:49 -080048/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080049#define IN_IGNORED 0x00008000
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080050#define IN_CLOSE (IN_CLOSE_WRITE | IN_CLOSE_NOWRITE)
51#define IN_MOVE (IN_MOVED_FROM | IN_MOVED_TO)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080052#define IN_ONLYDIR 0x01000000
Ben Cheng654325d2012-03-07 21:13:49 -080053/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080054#define IN_DONT_FOLLOW 0x02000000
55#define IN_MASK_ADD 0x20000000
56#define IN_ISDIR 0x40000000
57#define IN_ONESHOT 0x80000000
Ben Cheng654325d2012-03-07 21:13:49 -080058/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080059#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)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080060#endif