I'v some questions about zombie processes
- what the benefits from zombie process concept?
- know that the kernel keeps (PID,termination status, resource usage information) for zombie process
what's the meaning of "resource usage information" - how zombie's PPID() = 1 and it still zombie , (init reaps Zombies because it wait() by default)
can any one write some C code to make a zombie it's parent is Init? - can zombies refusing to release some lock on memory??
thanks in advance