Tagged Questions
23
votes
2answers
2k views
Why is the default process creation mechanism fork?
The UNIX system call for process creation, fork(), creates a child process by copying the parent process. My understanding is that this is almost always followed by a call to exec() to replace the ...