1.

Mention each system Calls used For Process Management in Linux ?

Answer»

Below are the system calls used for Process management:

  • fork (): CREATE a CHILD process
  • exec(): Execute a new program
  • WAIT(): wait until the process finishes execution
  • exit(): Exit from the process
  • getpid(): get the UNIQUE process ID of the process
  • getppid(): get the parent process unique id
  • nice(): run a program with modified scheduling priority


Discussion

No Comment Found