Help for this page

Select Code to Download


  1. or download this
        ...
        $SIG{ALRM} = sub { die 'timeout' };
    ...
        die $@ if 'timeout' eq $@;
        ...
    }
    
  2. or download this
        my $timed_out = 1;
        TIMEOUT_BLOCK_WITH_UNIQUE_LABEL: {
    ...
                if $err;
            $timed_out = 0;
        }