Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: fusl/include/sys/inotify.h

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 #ifndef _SYS_INOTIFY_H 1 #ifndef _SYS_INOTIFY_H
2 #define _SYS_INOTIFY_H 2 #define _SYS_INOTIFY_H
3 3
4 #ifdef __cplusplus 4 #ifdef __cplusplus
5 extern "C" { 5 extern "C" {
6 #endif 6 #endif
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <fcntl.h> 9 #include <fcntl.h>
10 10
11 struct inotify_event { 11 struct inotify_event {
12 » int wd; 12 int wd;
13 » uint32_t mask, cookie, len; 13 uint32_t mask, cookie, len;
14 » char name[]; 14 char name[];
15 }; 15 };
16 16
17 #define IN_CLOEXEC O_CLOEXEC 17 #define IN_CLOEXEC O_CLOEXEC
18 #define IN_NONBLOCK O_NONBLOCK 18 #define IN_NONBLOCK O_NONBLOCK
19 19
20 #define IN_ACCESS 0x00000001 20 #define IN_ACCESS 0x00000001
21 #define IN_MODIFY 0x00000002 21 #define IN_MODIFY 0x00000002
22 #define IN_ATTRIB 0x00000004 22 #define IN_ATTRIB 0x00000004
23 #define IN_CLOSE_WRITE 0x00000008 23 #define IN_CLOSE_WRITE 0x00000008
24 #define IN_CLOSE_NOWRITE 0x00000010 24 #define IN_CLOSE_NOWRITE 0x00000010
25 #define IN_CLOSE (IN_CLOSE_WRITE | IN_CLOSE_NOWRITE) 25 #define IN_CLOSE (IN_CLOSE_WRITE | IN_CLOSE_NOWRITE)
26 #define IN_OPEN 0x00000020 26 #define IN_OPEN 0x00000020
27 #define IN_MOVED_FROM 0x00000040 27 #define IN_MOVED_FROM 0x00000040
28 #define IN_MOVED_TO 0x00000080 28 #define IN_MOVED_TO 0x00000080
29 #define IN_MOVE (IN_MOVED_FROM | IN_MOVED_TO) 29 #define IN_MOVE (IN_MOVED_FROM | IN_MOVED_TO)
30 #define IN_CREATE 0x00000100 30 #define IN_CREATE 0x00000100
31 #define IN_DELETE 0x00000200 31 #define IN_DELETE 0x00000200
32 #define IN_DELETE_SELF 0x00000400 32 #define IN_DELETE_SELF 0x00000400
33 #define IN_MOVE_SELF 0x00000800 33 #define IN_MOVE_SELF 0x00000800
34 #define IN_ALL_EVENTS 0x00000fff 34 #define IN_ALL_EVENTS 0x00000fff
35 35
36 #define IN_UNMOUNT 0x00002000 36 #define IN_UNMOUNT 0x00002000
37 #define IN_Q_OVERFLOW 0x00004000 37 #define IN_Q_OVERFLOW 0x00004000
38 #define IN_IGNORED 0x00008000 38 #define IN_IGNORED 0x00008000
39 39
40 #define IN_ONLYDIR 0x01000000 40 #define IN_ONLYDIR 0x01000000
41 #define IN_DONT_FOLLOW 0x02000000 41 #define IN_DONT_FOLLOW 0x02000000
42 #define IN_EXCL_UNLINK 0x04000000 42 #define IN_EXCL_UNLINK 0x04000000
43 #define IN_MASK_ADD 0x20000000 43 #define IN_MASK_ADD 0x20000000
44 44
45 #define IN_ISDIR 0x40000000 45 #define IN_ISDIR 0x40000000
46 #define IN_ONESHOT 0x80000000 46 #define IN_ONESHOT 0x80000000
47 47
48 int inotify_init(void); 48 int inotify_init(void);
49 int inotify_init1(int); 49 int inotify_init1(int);
50 int inotify_add_watch(int, const char *, uint32_t); 50 int inotify_add_watch(int, const char*, uint32_t);
51 int inotify_rm_watch(int, int); 51 int inotify_rm_watch(int, int);
52 52
53 #ifdef __cplusplus 53 #ifdef __cplusplus
54 } 54 }
55 #endif 55 #endif
56 56
57 #endif 57 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698