diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-03-16 13:29:55 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-03-16 13:29:55 +0100 |
commit | efcb48432d0642bfd2fa751162e90b908829bf35 (patch) | |
tree | 8f3ffeed24c116155ccbf4d1f63578a3e989f147 /eitscan.h | |
parent | c85272e94d0af90affd8ef0cd4228354f740b869 (diff) | |
download | vdr-efcb48432d0642bfd2fa751162e90b908829bf35.tar.gz vdr-efcb48432d0642bfd2fa751162e90b908829bf35.tar.bz2 |
Modified the EPG scanner to avoid CPU load peaks
Diffstat (limited to 'eitscan.h')
-rw-r--r-- | eitscan.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: eitscan.h 1.1 2002/05/20 11:00:05 kls Exp $ + * $Id: eitscan.h 1.2 2003/03/16 13:20:40 kls Exp $ */ #ifndef __EITSCAN_H @@ -19,7 +19,8 @@ private: ScanTimeout = 20 }; time_t lastScan, lastActivity; - int currentChannel, lastChannel; + int currentChannel; + int lastChannel[MAXDEVICES]; int numTransponders, *transponders; bool TransponderScanned(cChannel *Channel); public: |