Operating Systems

Table of Contents

Process management

Minimal shell:

  1. Wait for command
  2. Start process to execute command
  3. Wait until process finished

pid_t fork()

pid_t wait(int *wstatus)

int exec(const char *path, char *constargv[])

signals

pipes