1. Crossed fingers, got rid of the instabilities caused by execing programs
[spider.git] / cmd / connect.pl
index ed6ba9a07a8286dbfd622bc7397af452be741df1..df9a42389c73dc38400c0b8f4b12dd3904855da0 100644 (file)
@@ -18,11 +18,14 @@ if (defined $pid) {
        if (!$pid) {
                # in child, unset warnings, disable debugging and general clean up from us
                $^W = 0;
+               $SIG{HUP} = 'IGNORE';
                eval "{ package DB; sub DB {} }";
                alarm(0);
+               DXChannel::closeall();
                $SIG{CHLD} = $SIG{TERM} = $SIG{INT} = $SIG{__WARN__} = 'DEFAULT';
                exec $prog, $call, 'connect';
        } else {
+               sleep(1);    # do a coordination
                return(1, $self->msg('constart', $call));
        }
 }