\"\" \"\" \"\"
Go backward to Shared Memory Programming
Go up to Top
Go forward to Sequent Micro-Tasking Library
RISC-Linz logo

Parallel Programming in Unix

pid = fork();
if (pid == 0)
  {
    ... child process
    exit(code);
  }
... parent process
wait(&status)

Author: Wolfgang Schreiner
Last modification: November 15, 1996