factor/vm/os-linux.hpp

11 lines
193 B
C++
Raw Normal View History

2009-05-02 05:04:19 -04:00
#include <sys/syscall.h>
2009-05-04 02:46:13 -04:00
namespace factor
{
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
}