Zombie

From Hackepedia
Revision as of 03:21, 27 October 2005 by Pbug (talk | contribs)
Jump to navigationJump to search

A zombie process is a process awaiting collection by a parent. To clean them up the parent process reaps the child with the wait(2) syscall, it knows when to do this because the kernel notifies it that the child has entered zombie state by means of the SIGCHLD signal. Orphaned processes are reaped by init.