nc 0.9.8

Access system calls directly
Documentation
1
2
3
4
/// Yield the processor.
pub unsafe fn r#yield() -> Result<(), Errno> {
    unsafe { syscall0(SYS_YIELD).map(drop) }
}