Understanding Fork Processes in Operating Systems
What is fork() actually ?
In simple words:
fork() is a system call that creates a new process by copying the current process.
After fork():
You have two processes
Both run the same code
One is called Parent
One is called Child
Why Do We Even ...
operating-systems-beginner-to-pro.hashnode.dev4 min read