◄ Wiki / OS
zombie reaping
Cleaning up finished child processes that still occupy a slot in the process table.
When a process exits, it doesn't fully disappear — it becomes a "zombie" holding a table entry until its parent collects its exit status. Reaping is the act of collecting that status (via a call like waitpid) so the entry is released. Skipping it leaks zombie entries until the table fills up.