mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-11-10 15:20:58 +00:00
39 lines
911 B
C
39 lines
911 B
C
/**
|
|
* Hack for yet missing fanotify interface in glibc.
|
|
* Does the syscalls by itself.
|
|
*
|
|
* TODO: Delete this as soon a glibc release supports this.
|
|
*/
|
|
#ifndef FANOTIFY_SYSCALL
|
|
#define FANOTIFY_SYSCALL
|
|
|
|
#define __EXPORTED_HEADERS__
|
|
#include <linux/types.h>
|
|
#undef __EXPORTED_HEADERS__
|
|
|
|
#include <unistd.h>
|
|
|
|
#if defined(__x86_64__)
|
|
# define __NR_fanotify_init 300
|
|
# define __NR_fanotify_mark 301
|
|
#elif defined(__i386__)
|
|
# define __NR_fanotify_init 338
|
|
# define __NR_fanotify_mark 339
|
|
#else
|
|
# error "System call numbers not defined for this architecture"
|
|
#endif
|
|
|
|
static int fanotify_init(unsigned int flags, unsigned int event_f_flags)
|
|
{
|
|
return syscall(__NR_fanotify_init, flags, event_f_flags);
|
|
}
|
|
|
|
static int fanotify_mark(int fanotify_fd, unsigned int flags, __u64 mask,
|
|
int dfd, const char *pathname)
|
|
{
|
|
return syscall(__NR_fanotify_mark, fanotify_fd, flags, mask,
|
|
dfd, pathname);
|
|
}
|
|
|
|
#endif
|