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