Explain the system calls used for process management?
Answer / Rajeev Kumar Ranjan
Some of the important system calls used for process management in Unix include fork(), exec(), wait(), and exit(). The fork() system call creates a new process, while exec() replaces the current running program with a new one. The wait() function is used to suspend the execution of the parent process until its child process has terminated. Finally, the exit() system call causes the calling process to terminate.
| Is This Answer Correct ? | 0 Yes | 0 No |
How do you execute one program from within another?
What is ipc in unix?
what is the process id for kernell process
How can a parent and child process communicate?
Explain a zombie?
What are the system calls used for process management:
What is an advantage of executing a process in background?
Max relax-able permission value with out giving write permission to others?
Predict the output of the following program code main() { fork(); printf("Hello World!"); }
What are various IDs associated with a process?
what about the initial process sequence while the system boots up?
About ln(linking)