1832988 Members
2673 Online
110048 Solutions
New Discussion

Re: process

 
Indrajit Bhagat
Regular Advisor

process

what is mean by zombie process
6 REPLIES 6
Torsten.
Acclaimed Contributor

Re: process

http://en.wikipedia.org/wiki/Zombie_process


Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
Steven E. Protter
Exalted Contributor

Re: process

Shalom,

A zombie process is aptly named. It is a process that runs, even uses cpu and memory but does nothing useful and is disconnected from its parent and is not responding.

Normally the only way to get rid of a Zombie process is to reboot.

Application programming issues cause zombies much of the time.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
James R. Ferguson
Acclaimed Contributor

Re: process

Hi:

SEP, you should read the link Torsten posted.

Regards!

...JRF...
Dennis Handly
Acclaimed Contributor

Re: process

>JRF: SEP, you should read the link Torsten posted.

Right. The only problem with that link is it doesn't use the technical term, zombie master. :-)
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1145648
whiteknight
Honored Contributor

Re: process

Hi

The reason for the "defunct" processes listed when you use the ps
command is "zombie" processes. This is the name for a process
that terminates for any reason, but whose parent process has not
waited for it to terminate (via wait(2)). The process that terminated
continues to occupy a slot in the process table until its parent process
waits for it. Because it has terminated, however, there is no other space
allocated to it either in user or kernel space.

This is a relatively harmless occurrence that rectifies itself the
next time its parent process waits. The ps(1) command lists zombie
processes as "defunct."

WK
please assign points
Problem never ends, you must know how to fix it
AL_3001
Regular Advisor

Re: process

Hi Indrajit,
When a process terminates, it sends an exit system call. At this time, the kernel releases resources used by the process. The process becomes a zombie and remains in the zombie state until its parent process gives it permission to die. If the parent process is not responding, the process may be left in a zombie state indefinitely.

Hope this information helps.