mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
385 B
14 lines
385 B
#include "syscall.h"
|
|
#include <sys/fanotify.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, fanotify_fd, flags, __SYSCALL_LL_E(mask), dfd, pathname);
|
|
}
|
|
|
|
|