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