Advanced Programming in UNIX Environment Episode 65
Threads and forkWhen a thread calls fork, a copy of the entire process address space is made for the child. Recall the discussion of copy-on-write in Section 8.3. The child is an entirely different ...