process creation and process termination
Answers
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 ☺☺☺
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.