Skip to main content

Process Management

Process Creation and Termination

0:00
LearnStep 1/2

Process Creation

Process Creation in Unix/Linux

fork() System Call

c

exec() Family

Replace current process image with new program:

c

Zombie and Orphan Processes

  • Zombie: Child terminated but parent hasn't called wait()
  • Orphan: Parent terminated before child; adopted by init (PID 1)