Add inotify_rm_watch definition to c/linux.zig

Also make inotify_add_watch's pathname marked as nul-terminated
This commit is contained in:
Ryan Liptak
2021-07-14 18:06:53 -07:00
committed by Veikka Tuominen
parent a84402d796
commit 4ea7470417

View File

@@ -94,7 +94,8 @@ pub extern "c" fn epoll_pwait(
sigmask: *const sigset_t,
) c_int;
pub extern "c" fn inotify_init1(flags: c_uint) c_int;
pub extern "c" fn inotify_add_watch(fd: fd_t, pathname: [*]const u8, mask: u32) c_int;
pub extern "c" fn inotify_add_watch(fd: fd_t, pathname: [*:0]const u8, mask: u32) c_int;
pub extern "c" fn inotify_rm_watch(fd: fd_t, wd: c_int) c_int;
/// See std.elf for constants for this
pub extern "c" fn getauxval(__type: c_ulong) c_ulong;