Function inotify_rm_watch [src]
Prototype
pub fn inotify_rm_watch(fd: i32, wd: i32) usize
Parameters
fd: i32
wd: i32
Source
pub fn inotify_rm_watch(fd: i32, wd: i32) usize {
return syscall2(.inotify_rm_watch, @as(usize, @bitCast(@as(isize, fd))), @as(usize, @bitCast(@as(isize, wd))));
}