nc 0.9.7

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;
    syscall1(SYS_THR_WAKE, id).map(drop)
}