Background of Process Creation
We can create a process in a program by a system call fork
.
After calling fork
, the original process splits into two, the original one, and the new created one.

Last updated
Was this helpful?
We can create a process in a program by a system call fork
.
After calling fork
, the original process splits into two, the original one, and the new created one.
Last updated
Was this helpful?