nc 0.9.8

Access system calls directly
Documentation
1
2
3
4
5
/// Set feed-forward clock estimates.
pub unsafe fn ffclock_setestimate(cest: &mut ffclock_estimate_t) -> Result<(), Errno> {
    let cest_ptr = core::ptr::from_mut(cest) as usize;
    unsafe { syscall1(SYS_FFCLOCK_SETESTIMATE, cest_ptr).map(drop) }
}