nc 0.9.8

Access system calls directly
Documentation
1
2
3
4
/// Create a child process and wait until it is terminated.
pub unsafe fn vfork() -> Result<pid_t, Errno> {
    unsafe { syscall0(SYS_VFORK).map(|ret| ret as pid_t) }
}