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

Related questions

0 votes
asked Nov 11, 2020 in Linux by sharadyadav1986
+1 vote
asked May 11, 2021 in Linux by rajeshsharma
...