Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

Name

process - system process examples

Description

Applications:

  • fork: create a child process with fork(2).
  • wait: use wait(2) to let fork(2) child finish.
  • exec: exec(3) loads a new program into current process and executes it.