Help for this page

Select Code to Download


  1. or download this
    local $SIG{'CHLD'} = sub { print "dead child\n"; $timeout=0 };
    
  2. or download this
    local $SIG{'CHLD'} = sub { $timeout=0 };
    
  3. or download this
    #!/usr/bin/perl 
    use strict;
    ...
        my $ret = system("sleep 20");
        exit $ret;
    }