1.

List The System Calls Used For Process Management:

Answer»
  1. System calls - Description 
  2. fork() - To create a NEW process 
  3. exec() - To execute a new program in a process
  4. wait() - To wait until a CREATED process COMPLETES its execution
  5. exit() - To exit from a process execution
  6. getpid() - To get a process IDENTIFIER of the current process
  7. getppid() - To get parent process identifier
  8. nice() - To bias the existing PRIORITY of a process
  9. brk() - To increase/decrease the data segment size of a process



Discussion

No Comment Found