📅  最后修改于: 2022-03-11 15:00:19.549000             🧑  作者: Mango
Fork system call is used for creating a new process, which is called child process,
which runs concurrently with the process that makes the fork() call (parent process).
After a new child process is created, both processes will execute the next instruction
following the fork() system call.