diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2021-04-20 13:22:37 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2021-04-20 13:22:37 +0200 |
commit | ce23ba64bd4c606576a8cd6003c2dfd4f9820ed6 (patch) | |
tree | ba94ca208f3efcf699ee5a25020ad0f55d961ec4 /timers.h | |
parent | 02c668a6a9c6cbf4fc1638122be53b7155c900e0 (diff) | |
download | vdr-ce23ba64bd4c606576a8cd6003c2dfd4f9820ed6.tar.gz vdr-ce23ba64bd4c606576a8cd6003c2dfd4f9820ed6.tar.bz2 |
Deleting expired timers is now triggered immediately after the timers are modified
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.7 2021/04/18 14:56:40 kls Exp $ + * $Id: timers.h 5.8 2021/04/20 13:22:37 kls Exp $ */ #ifndef __TIMERS_H @@ -203,7 +203,7 @@ public: bool SetEvents(const cSchedules *Schedules); bool SpawnPatternTimers(const cSchedules *Schedules); bool AdjustSpawnedTimers(void); - bool DeleteExpired(void); + bool DeleteExpired(bool Force); void Add(cTimer *Timer, cTimer *After = NULL); void Ins(cTimer *Timer, cTimer *Before = NULL); void Del(cTimer *Timer, bool DeleteObject = true); |