add -fPIC option to the C compiler, required in f31
[vsys.git] / ocaml_inotify-0.4 / inotify_compat.h
1 #ifndef _SYS_INOTIFY_H
2 #define _SYS_INOTIFY_H  1
3
4 /* no other solution unfortunately ATM. */
5 #define __KERNEL__
6
7 #include <stdint.h>
8 #include <sys/syscall.h>
9 #include <asm/unistd.h>
10
11 /* Structure describing an inotify event.  */
12 struct inotify_event
13 {
14         int wd;
15         unsigned int mask;
16         unsigned int cookie;
17         unsigned int len;
18         char name[0];
19 };
20
21 #define IN_ACCESS        0x00000001
22 #define IN_MODIFY        0x00000002
23 #define IN_ATTRIB        0x00000004
24 #define IN_CLOSE_WRITE   0x00000008
25 #define IN_CLOSE_NOWRITE 0x00000010
26 #define IN_CLOSE         (IN_CLOSE_WRITE | IN_CLOSE_NOWRITE)
27 #define IN_OPEN          0x00000020
28 #define IN_MOVED_FROM    0x00000040
29 #define IN_MOVED_TO      0x00000080
30 #define IN_MOVE          (IN_MOVED_FROM | IN_MOVED_TO)
31 #define IN_CREATE        0x00000100
32 #define IN_DELETE        0x00000200
33 #define IN_DELETE_SELF   0x00000400
34 #define IN_MOVE_SELF     0x00000800
35 #define IN_UNMOUNT       0x00002000
36 #define IN_Q_OVERFLOW    0x00004000
37 #define IN_IGNORED       0x00008000
38 #define IN_CLOSE         (IN_CLOSE_WRITE | IN_CLOSE_NOWRITE)
39 #define IN_MOVE          (IN_MOVED_FROM | IN_MOVED_TO)
40 #define IN_ONLYDIR       0x01000000
41 #define IN_DONT_FOLLOW   0x02000000
42 #define IN_MASK_ADD      0x20000000
43 #define IN_ISDIR         0x40000000
44 #define IN_ONESHOT       0x80000000
45
46 #define IN_ALL_EVENTS    (IN_ACCESS | IN_MODIFY | IN_ATTRIB | IN_CLOSE_WRITE  \
47                           | IN_CLOSE_NOWRITE | IN_OPEN | IN_MOVED_FROM        \
48                           | IN_MOVED_TO | IN_CREATE | IN_DELETE               \
49                           | IN_DELETE_SELF | IN_MOVE_SELF)
50
51 #include <errno.h>
52
53 _syscall0(long, inotify_init);
54 _syscall3(int, inotify_add_watch, int, fd, char *, name, int, mask);
55 _syscall2(int, inotify_rm_watch, int, fd, int, wd);
56
57 #undef __KERNEL__
58
59 #endif /* ! _SYS_INOTIFY_H */