Function adjtimex
pub unsafe fn adjtimex(buf: &mut timex_t) -> Result<i32, i32> ⓘ
Available on crate feature
dep_nc
only.Expand description
Tune kernel clock. Returns clock state on success.
§Examples
let mut tm = nc::timex_t::default();
let ret = unsafe { nc::adjtimex(&mut tm) };
assert!(ret.is_ok());
assert!(tm.time.tv_sec > 1611552896);