Help for this page

Select Code to Download


  1. or download this
    [...]
    my $pid = fork;
    my $dontDie = 2;
    [...]
    
  2. or download this
     $SIG{INT} = sub {
            die "This is the end" unless --$dontDie;
            warn "Sending sig INT to child PID $pid";
            kill 'INT' => $pid;
            };