top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is Zombie process in UNIX? How do you find Zombie process in UNIX?

0 votes
283 views
What is Zombie process in UNIX? How do you find Zombie process in UNIX?
posted Jan 25, 2016 by Jayshree

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

When a program forks and the child finishes before the parent, the kernel still keeps some of its information about the child in case the parent might need it - for example, the parent may need to check the child's exit status. To be able to get this information, the parent calls 'wait()'; In the interval between the child terminating and the parent calling 'wait()', the child is said to be a 'zombie' (If you do 'ps', the child will have a 'Z' in its status field to indicate this.)
Zombie : The process is dead but have not been removed from the process table.

answer Jan 25, 2016 by Shivaranjini
...