[PHP] killing a child process from pcntl_exec

2009-01-22 Thread bruce
Hi.. I fork a child process, using pcntl_exec. I see the process from the cmdline (using pgrep 123), but I can't seem to kill the pid from the cmdline, using kill -9 123.. Is there something that I need to implement within the php test in order for the kill signal to be effective? If I wait,

Re: [PHP] killing a child process from pcntl_exec

2009-01-22 Thread ceo
There are functions/settings in pcntl docs about how to listen for specific signals. If you don't listen for -9, maybe you don't get it. http://php.net/manual/en/function.pcntl-signal.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] killing a child process from pcntl_exec

2009-01-22 Thread bruce
Message- From: c...@l-i-e.com [mailto:c...@l-i-e.com] Sent: Thursday, January 22, 2009 10:00 AM To: php-general@lists.php.net Subject: Re: [PHP] killing a child process from pcntl_exec There are functions/settings in pcntl docs about how to listen for specific signals. If you don't listen