Function inotify_init
pub unsafe fn inotify_init() -> Result<i32, i32> ⓘ
Available on crate feature
dep_nc
only.Expand description
Initialize an inotify instance.
§Examples
let ret = unsafe { nc::inotify_init() };
assert!(ret.is_ok());
let fd = ret.unwrap();
let ret = unsafe { nc::close(fd) };
assert!(ret.is_ok());