Background of Process Creation
Last updated
Was this helpful?
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.