Re: [PHP] signal handler to ignore kill of parent

2003-01-03 Thread Thomas Weber
gt; To: "PHP-List" <[EMAIL PROTECTED]> Sent: Thursday, January 02, 2003 7:42 PM Subject: Re: [PHP] signal handler to ignore kill of parent > > Actually let me try to be a bit more helpful... nut not much though :-) > > Did you write the code for the fork(); > > Can you

Re: [PHP] signal handler to ignore kill of parent

2003-01-02 Thread Michael J. Pawlowsky
Actually let me try to be a bit more helpful... nut not much though :-) Did you write the code for the fork(); Can you modify it? Read the fork, exec and clone man pages. This might help you a bit understand the behaviour. If so just call exec from the forked process... this will create a new

Re: [PHP] signal handler to ignore kill of parent

2003-01-02 Thread Michael J. Pawlowsky
You should get together with the the guy who's was looking for a way to kill the child processes after killing the parent. They weren't dying for him. (Which I dont understand why?) :-) *** REPLY SEPARATOR *** On 02/01/2003 at 7:05 PM Thomas Weber wrote: >Hi, > >i need some w