in reply to Re: Timeouts/timers on Win32 system
in thread Timeouts/timers on Win32 system
update: apparently, for perl 5.8.x this has changed, but perlport wasn't updated (i'll notify perl5-porters if perl-current is not up to date)E:\>perldoc perlport|grep alarm alarm SECONDS alarm Not implemented. (Win32) E:\>perl -le"alarm 0" The Unsupported function alarm function is unimplemented at -e line 1.
E:\>perl local $SIG{ALRM} = sub { die "alarm!!!!" }; alarm 1; sleep 10; alarm 0; __END__ alarm!!!! at - line 1.
|
|---|