What are the system calls used for process management:
Answer Posted / chandrasekhar kar
The system calls for process management are
Fork() > create child process
Vfork() > create child process (copy-on-write only)
exec() > exec to do a different task
wait() > wait for a process to complete execution
kill() > to send a signal to a process
signal() > to handle a signal
sigaction() > handle signal
exit() > exit from a process execution
_exit() > same as exit() but with out clean up
and many more ................
| Is This Answer Correct ? | 32 Yes | 4 No |
Post New Answer View All Answers
Explain a zombie?
What is the condition required for dead lock in unix system?
How to write the program on full-duplex communication on bidirectional(e.g using two pipes)?
Tell me set-user-id is related to (in unix)?
What are the various schemes available in ipc?
Explain about daemon?
What is ipc in unix?
What is unix ipc?
What is ipc port?
Which ipc is faster?
Explain what is the process id for kernel process?
Explain the advantage of executing a process in background?
Explain linking across directories?
Max relax-able permission value with out giving write permission to others?
What is i-node numbers?