Zoly wrote: > > Hi Folks, > > In my short primitive code I used 'Time::HiRes' that worked for me > pretty good on my old P4-2.4GHz machine with XP-pro for long. Sample: > (Line 3)-> use Time::HiRes qw(usleep ualarm gettimeofday > tv_interval); > > I had to replace my PC and the platform now is a 'AMD-Athlon 64 X2 > Dual Core 3800+' that made my applications "flying" compared to the > earlier one, but there is a problem, my code exits with this error > message below. Time::HiRes::ualarm(): unimplemented in this platform at > C:\Perl\time.pl line 3
ualarm() never worked on Windows, so are you sure you need it at all? Later versions of Time::HiRes started to abort during the importing of the name rather when it was first called, which is why you see the error much earlier now. Cheers, -Jan _______________________________________________ ActivePerl mailing list [email protected] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
