diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2021-04-13 13:54:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2021-04-13 13:54:00 +0200 |
commit | b2fb654bb333162473d0d0a3a9171b43cff7f990 (patch) | |
tree | 16b96ecb78eaf6b4ae12fd3348a8c57ddc131f78 /timers.h | |
parent | cd834c79ba26c1a10f6fa8afa3591490630cde8a (diff) | |
download | vdr-b2fb654bb333162473d0d0a3a9171b43cff7f990.tar.gz vdr-b2fb654bb333162473d0d0a3a9171b43cff7f990.tar.bz2 |
To avoid problems with very short events, non-VPS pattern timers now spawn timers for all matching events that would start while the first one is still recording
Diffstat (limited to 'timers.h')
-rw-r--r-- | timers.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: timers.h 5.5 2021/04/10 10:09:50 kls Exp $ + * $Id: timers.h 5.6 2021/04/13 13:54:00 kls Exp $ */ #ifndef __TIMERS_H @@ -99,7 +99,7 @@ public: time_t StartTime(void) const; time_t StopTime(void) const; void SetId(int Id); - void SpawnPatternTimer(const cEvent *Event, cTimers *Timers); + cTimer *SpawnPatternTimer(const cEvent *Event, cTimers *Timers); bool SpawnPatternTimers(const cSchedules *Schedules, cTimers *Timers); bool AdjustSpawnedTimer(void); void TriggerRespawn(void); |