6 lines
147 B
C++
6 lines
147 B
C++
|
#include <sys/syscall.h>
|
||
|
|
||
|
int inotify_init(void);
|
||
|
int inotify_add_watch(int fd, const char *name, u32 mask);
|
||
|
int inotify_rm_watch(int fd, u32 wd);
|