- or download this
$sth->stuff();
#NOT return unless $timeleft;
#if i'm here, I do not need to return, I can go on
- or download this
local $SIG{ALRM}=sub {
return; #IE, when ALRM strikes
...
alarm 10;#
$sth->stuff();
alarm 0;# if I'm here, I can safely continue
- or download this
sub sth($$) {
$SIG{ALRM}=sub {
...
SUBEND:
return;
}