]> gitweb.factorcode.org Git - factor.git/blob - vm/os-linux.hpp
vm: fix compilation on various Unices
[factor.git] / vm / os-linux.hpp
1 #include <sys/syscall.h>
2
3 namespace factor
4 {
5
6 VM_C_API int inotify_init();
7 VM_C_API int inotify_add_watch(int fd, const char *name, u32 mask);
8 VM_C_API int inotify_rm_watch(int fd, u32 wd);
9
10 #define UAP_STACK_POINTER_TYPE greg_t
11
12 }