in reply to Preforked children not killed when parent is killed

kill sends TERM by default, not INT (at least on my system). What happens when you issue kill -INTpid?

Replies are listed 'Best First'.
Re^2: Preforked children not killed when parent is killed
by macli (Beadle) on Mar 23, 2007 at 18:07 UTC
    Yes, you are right. If I add  $SIG{TERM}  = \&HUNTSMAN; Or kill -INT pid_of_parent the children get killed.
    Thanks guys for the clarification!