X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FTimer.pm;h=683497d2d328f889f6d1ac6f1aaf9538587b3a4a;hb=b91254375e95e7931312c4177ee390866f82c648;hp=0c44278e05067723a8d0a5e25df430af2ada801c;hpb=2f1b948ea733e0ece1909a31987dc8f03044e851;p=spider.git diff --git a/perl/Timer.pm b/perl/Timer.pm index 0c44278e..683497d2 100644 --- a/perl/Timer.pm +++ b/perl/Timer.pm @@ -25,7 +25,7 @@ sub new $self->{interval} = $time if $recur; push @timerchain, $self; $notimers++; - dbg('connll', "Timer created ($notimers)"); + dbg("Timer created ($notimers)") if isdbg('connll'); return $self; } @@ -41,17 +41,18 @@ sub handler my $now = time; # handle things on the timer chain - for (@timerchain) { - if ($now >= $_->{t}) { - &{$_->{proc}}(); - $_->{t} = $now + $_->{interval} if exists $_->{interval}; + my $t; + foreach $t (@timerchain) { + if ($now >= $t->{t}) { + &{$t->{proc}}(); + $t->{t} = $now + $t->{interval} if exists $t->{interval}; } } } sub DESTROY { - dbg('connll', "Timer destroyed ($notimers)"); - $notimers--; + dbg("timer destroyed ($Timer::notimers)") if isdbg('connll'); + $Timer::notimers--; } 1;