Login
Remember
Register
Ask a Question
Explain system calls used for process management?
+1
vote
asked
Feb 19, 2021
in
Linux
by
SakshiSharma
Explain system calls used for process management?
#process-management
process
system-calls
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Feb 19, 2021
by
SakshiSharma
There are some system
calls used in Linux for process management
. These are as follows:
Fork(): It is used to create a new process
Exec(): It is used to execute a new process
Wait(): It is used to make the process to wait
Exit(): It is used to exit or terminate the process
Getpid(): It is used to find the unique process ID
Getppid(): It is used to check the parent process ID
Nice(): It is used to bias the currently running process property
...