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
Explain the system calls used for process management?
Explain what is the process id for kernel process?
Which ipc is the fastest in unix?
Which ipc is faster?
Explain linking across directories?
How to write the program on full-duplex communication on bidirectional(e.g using two pipes)?
Explain about daemon?
What are the various schemes available?
How to get or set an environment variable from a program?
What is ipc in unix?
Explain the initial process sequence while the system boots up?
Please explain fork() system call?
Tell me set-user-id is related to (in unix)?
How to write the program on full-duplex communication on bidirectional?
What is the condition required for dead lock in unix system?