Fork (11.10)
The fork system call is used to create a duplicate of the currently running program
The duplicate (child process) and the original (parent process) both proceed from the point of the fork with exactly the same data
The only difference between the two processes is the fork return value, i.e. (… see next slide)