0 votes
in Linux by
Explain Process Management System Calls in Linux

1 Answer

0 votes
by
Explain Process Management System Calls in Linux

The System Calls to manage the process are:

fork () : Used to create a new process

exec() : Execute a new program

wait() : Wait until the process finishes execution

exit() : Exit from the process

And the System Calls used to get Process ID are:

getpid():- get the unique process id of the process

getppid():- get the parent process unique id
...