Saved Bookmarks
| 1. |
What is the fork() system call? |
|
Answer» This is used to create ANOTHER process that duplicates the entire process structure and address SPACE. The newly created process is CALLED the child process and the one from which it got replicated is called the parent process. This was used to achieve parallelism before threads. The fork() system call takes no arguments and returns an integer.
|
|