On Wed, Jun 9, 2010 at 2:41 PM, Joshua Gimer <jgi...@gmail.com> wrote:
> On Wed, Jun 9, 2010 at 5:08 AM, Eitan Adler <li...@eitanadler.com> wrote:
>> What can I do to determine why processes are not getting killed by kill -9?
>
> Try attaching to it using truss to see if it will shed some light on the
> reason why the process will not die.

The only reason for zombies is that the parent process doesn't
invoke the wait(2) system call to reclaim their return status.
I'd truss(1) the parent: maybe it is buggy or even stopped (SIGSTOP?).

-- 
Cordula's Web. http://www.cordula.ws/
_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Reply via email to