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

Side by Side Diff: fusl/src/linux/inotify.c

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « fusl/src/linux/flock.c ('k') | fusl/src/linux/ioperm.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #include <sys/inotify.h>
2 #include <errno.h>
3 #include "syscall.h"
4
5 int inotify_init()
6 {
7 return inotify_init1(0);
8 }
9 int inotify_init1(int flags)
10 {
11 int r = __syscall(SYS_inotify_init1, flags);
12 #ifdef SYS_inotify_init
13 if (r==-ENOSYS && !flags) r = __syscall(SYS_inotify_init);
14 #endif
15 return __syscall_ret(r);
16 }
17
18 int inotify_add_watch(int fd, const char *pathname, uint32_t mask)
19 {
20 return syscall(SYS_inotify_add_watch, fd, pathname, mask);
21 }
22
23 int inotify_rm_watch(int fd, int wd)
24 {
25 return syscall(SYS_inotify_rm_watch, fd, wd);
26 }
OLDNEW
« no previous file with comments | « fusl/src/linux/flock.c ('k') | fusl/src/linux/ioperm.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698