nc 0.9.8

Access system calls directly
Documentation
1
2
3
4
5
6
/// Get the value of a semaphore.
pub unsafe fn ksem_getvalue(id: semid_t, value: &mut i32) -> Result<(), Errno> {
    let id = id as usize;
    let value_ptr = core::ptr::from_mut(value) as usize;
    unsafe { syscall2(SYS_KSEM_GETVALUE, id, value_ptr).map(drop) }
}