summaryrefslogtreecommitdiff
path: root/src/linux/fanotify.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/linux/fanotify.c')
-rw-r--r--src/linux/fanotify.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/linux/fanotify.c b/src/linux/fanotify.c
new file mode 100644
index 00000000..73f941de
--- /dev/null
+++ b/src/linux/fanotify.c
@@ -0,0 +1,14 @@
+#include "syscall.h"
+#include <sys/inotify.h>
+
+int fanotify_init(unsigned flags, unsigned event_f_flags)
+{
+ return syscall(SYS_fanotify_init, flags, event_f_flags);
+}
+
+int fanotify_mark(int fanotify_fd, unsigned flags, unsigned long long mask,
+ int dfd, const char *pathname)
+{
+ return syscall(SYS_fanotify_mark, flags, __SYSCALL_LL_O(mask), dfd, pathname);
+}
+