Remove inotify system call wrappers. Hopefully everyone is using a recent glibc now. Fixes #86

db4
Slava Pestov 2011-09-08 22:03:56 -07:00
parent d06f97eb99
commit 104583f888
2 changed files with 0 additions and 43 deletions

View File

@ -24,43 +24,4 @@ const char *vm_executable_path()
}
}
#ifdef SYS_inotify_init
VM_C_API int inotify_init()
{
return syscall(SYS_inotify_init);
}
VM_C_API int inotify_add_watch(int fd, const char *name, u32 mask)
{
return syscall(SYS_inotify_add_watch, fd, name, mask);
}
VM_C_API int inotify_rm_watch(int fd, u32 wd)
{
return syscall(SYS_inotify_rm_watch, fd, wd);
}
#else
VM_C_API int inotify_init()
{
current_vm()->not_implemented_error();
return -1;
}
VM_C_API int inotify_add_watch(int fd, const char *name, u32 mask)
{
current_vm()->not_implemented_error();
return -1;
}
VM_C_API int inotify_rm_watch(int fd, u32 wd)
{
current_vm()->not_implemented_error();
return -1;
}
#endif
}

View File

@ -3,8 +3,4 @@
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);
}