Saved Bookmarks
| 1. |
What are the function of fork in kernel |
|
Answer» Answer: fork() is a system call. fork is used to create a child PROCESS from the running process, which is a REPLICA of the PARENT process(Process which executed fork() ). Child process is derived from the parent process. |
|