![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| zombie process | jeenat | Linux | 5 | 03-28-2008 07:36 AM |
| zombie processes and hung process termination | ukndoit | Shell Programming and Scripting | 2 | 03-14-2008 02:53 AM |
| how to handle a zombie process | mridula | High Level Programming | 1 | 12-06-2005 05:47 PM |
| zombie daemon process!! | rish2005 | UNIX for Advanced & Expert Users | 1 | 11-25-2005 09:59 AM |
| Zombie process | swhitney | UNIX for Advanced & Expert Users | 2 | 10-22-2004 05:12 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
zombie
i found a better explianation from http://www.erlenstar.demon.co.uk/unix/faq_2.html#SEC13
***************** 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(); when this happens, the kernel can discard the information. 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.) Even though it's not running, it's still taking up an entry in the process table. (It consumes no other resources, but some utilities may show bogus figures for e.g. CPU usage; this is because some parts of the process table entry have been overlaid by accounting info to save space.) ************* regs |
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|