Math, asked by jitendranirmala123, 9 months ago

process creation and process termination​

Answers

Answered by SayedaFariaAinee
2

Answer:

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 occurs when the process is terminated The exit() system call is used by most operating systems for process termination. A process may be terminated after its execution is naturally completed. This process leaves the processor and releases all its resources

☺☺☺FARIA AINEE ☺☺☺

Answered by tridibeshsen09
0

Answer:

creation process

Process creation is achieved through the fork() system call. The newly created process is called the child process

termination process

Process termination occurs when the process is terminated The exit() system call is used by most operating systems for process termination.

Similar questions