nc 0.9.8

Access system calls directly
Documentation
1
2
3
4
5
6
/// Return from signal handler and cleanup stack frame.
///
/// Never returns.
pub unsafe fn rt_sigreturn() {
    let _ret = unsafe { syscall0(SYS_RT_SIGRETURN) };
}