blob: 73f941de9e1f8c7832f634089f05f700e16cc433 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);
}
|