diff options
Diffstat (limited to 'src/linux/inotify.c')
-rw-r--r-- | src/linux/inotify.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/linux/inotify.c b/src/linux/inotify.c index a417c891..84a56154 100644 --- a/src/linux/inotify.c +++ b/src/linux/inotify.c @@ -3,11 +3,15 @@ int inotify_init() { - return syscall(SYS_inotify_init); + return inotify_init1(0); } int inotify_init1(int flags) { - return syscall(SYS_inotify_init1, flags); + int r = __syscall(SYS_inotify_init1, flags); +#ifdef SYS_inotify_init + if (r==-ENOSYS && !flags) r = __syscall(SYS_inotify_init); +#endif + return __syscall_ret(r); } int inotify_add_watch(int fd, const char *pathname, uint32_t mask) |