fork() Primer

Process “Death”

Normal Flow

Exception #1 - Ignoring SIGCHLD

// Ignore the signal
signal(SIGCHLD, SIG_IGN)

Exception #2 — Parent dies first

Best Practices

The Full Process