]> gitweb.factorcode.org Git - factor.git/blob - vm/os-linux.hpp
Merge branch 'redis' of git://www.tiodante.com/git/factor
[factor.git] / vm / os-linux.hpp
1 #include <sys/syscall.h>
2
3 namespace factor
4 {
5
6 int inotify_init();
7 int inotify_add_watch(int fd, const char *name, u32 mask);
8 int inotify_rm_watch(int fd, u32 wd);
9
10 }