process creation and process termination
Answers
Answered by
2
Answer:
please mark me as brainless
Attachments:
Answered by
2
Process creation:- Process creation is achieved through the fork() system call. The newly created process is called the child process and the process that initiated it (or the process when execution is started) is called the parent process. After the fork() system call, now we have two processes - parent and child processes.
Process termination:- Process termination occurs when the process is terminated The exit() system call is used by most operating systems for process termination. This process leaves the processor and releases all its resources. ... A child process may be terminated if its parent process requests for its termination.
Hope it helps you.
Similar questions