summaryrefslogtreecommitdiff
path: root/src/linux/inotify_rm_watch.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/linux/inotify_rm_watch.c')
-rw-r--r--src/linux/inotify_rm_watch.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/linux/inotify_rm_watch.c b/src/linux/inotify_rm_watch.c
new file mode 100644
index 00000000..0772d719
--- /dev/null
+++ b/src/linux/inotify_rm_watch.c
@@ -0,0 +1,7 @@
+#include <sys/inotify.h>
+#include "syscall.h"
+
+int inotify_rm_watch(int fd, uint32_t wd)
+{
+ return syscall2(__NR_inotify_rm_watch, fd, wd);
+}