nc 0.9.8

Access system calls directly
Documentation
1
2
3
4
5
/// Notify thread wakeup from suspend state.
pub unsafe fn thr_wake(id: isize) -> Result<(), Errno> {
    let id = id as usize;
    unsafe { syscall1(SYS_THR_WAKE, id).map(drop) }
}