2009-05-02 05:04:19 -04:00
|
|
|
#include <sys/syscall.h>
|
|
|
|
|
2009-05-04 02:46:13 -04:00
|
|
|
namespace factor
|
|
|
|
{
|
|
|
|
|
2009-05-05 12:33:35 -04:00
|
|
|
int inotify_init();
|
2009-05-02 05:04:19 -04:00
|
|
|
int inotify_add_watch(int fd, const char *name, u32 mask);
|
|
|
|
int inotify_rm_watch(int fd, u32 wd);
|
2009-05-04 02:46:13 -04:00
|
|
|
|
|
|
|
}
|