What are the system calls used for process management:
Answer Posted / marimuthu
fork() - To Duplicate the Process
exec() - Family of Functions Replace the calling process image with new process image
getpid() - To get process id
getppid() - To get the parent process id
getpgrp() - To get the process group
wait() - To wait the calling process to get child's exit status
sleep() - To suspend the execution of the process for some seconds
kill() - To send signal to a process
and etc
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
What is the very first process created by kernel?
Which ipc is faster?
What is fork()?
What is ipc in unix?
What is ln(linking)?
How to write the program on full-duplex communication on bidirectional?
Explain a zombie?
What is i-node numbers?
Explain linking across directories?
What is the full form of ipc?
Explain how do you execute one program from within another?
What is unix ipc?
What are the various schemes available in ipc?
How to write the program on full-duplex communication on bidirectional(e.g using two pipes)?
Explain the system calls used for process management?