Unix IPC Question:
Download Questions PDF

What are the system calls used for process management:

Answer:

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 ................

Download Unix Inter-Process Communication (IPC) Interview Questions And Answers PDF

Previous QuestionNext Question
How to write the program on full-duplex communication on bidirectional(e.g using two pipes)?Please Describe the initial process sequence while the system boots up?