What is shared between the parent process and child process when one process creates another?
Answers
Answered by
0
Answer:
Explanation:
The process that calls fork() is the parent process and the newly created process is its child.But in Linux a technique called copy-on-write is used, due to this the parent and child share a single copy of the process address space.
Similar questions