Function nc::call::timerfd_create

source ·
pub unsafe fn timerfd_create(clockid: i32, flags: i32) -> Result<i32, Errno>
Expand description

Create a timer that notifies via a file descriptor.

§Example

let ret = unsafe { nc::timerfd_create(nc::CLOCK_MONOTONIC, nc::TFD_CLOEXEC) };
assert!(ret.is_ok());
let fd = ret.unwrap();
let ret = unsafe { nc::close(fd) };
assert!(ret.is_ok());