pub unsafe fn fork() -> Result<Pid, Errno>
Forks the current process into a new subprocess. If the function returns a zero then its the new subprocess. If it returns a positive number then its the current process and the $pid represents the child.