From 2dc17e6e51cb6403ed5f9397265e5323cde9d137 Mon Sep 17 00:00:00 2001 From: rudolfkoenig Date: Thu, 28 Nov 2013 18:27:42 +0000 Subject: [PATCH] fhem.pl: changing intAt and nextAt to global for external benchmark git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@4294 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/fhem.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fhem/fhem.pl b/fhem/fhem.pl index 61a22fa40..ba5217d20 100755 --- a/fhem/fhem.pl +++ b/fhem/fhem.pl @@ -171,6 +171,8 @@ use vars qw($devcount); # To sort the devices use vars qw(%defaultattr); # Default attributes, used by FHEM2FHEM use vars qw(%addNotifyCB); # Used by event enhancers (e.g. avarage) use vars qw(%inform); # Used by telnet_ActivateInform +use vars qw(%intAt); # Internal at timer hash, global for benchmark +use vars qw($nextat); # Time when next timer will be triggered. use vars qw($reread_active); use vars qw($winService); # the Windows Service object @@ -185,8 +187,6 @@ my $currcfgfile=""; # current config/include file my $logopened = 0; # logfile opened or using stdout my $rcvdquit; # Used for quit handling in init files my $sig_term = 0; # if set to 1, terminate (saving the state) -my %intAt; # Internal at timer hash. -my $nextat; # Time when next timer will be triggered. my $intAtCnt=0; my %duplicate; # Pool of received msg for multi-fhz/cul setups my $duplidx=0; # helper for the above pool