summaryrefslogtreecommitdiff
path: root/timers.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2021-04-20 13:22:37 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2021-04-20 13:22:37 +0200
commitce23ba64bd4c606576a8cd6003c2dfd4f9820ed6 (patch)
treeba94ca208f3efcf699ee5a25020ad0f55d961ec4 /timers.h
parent02c668a6a9c6cbf4fc1638122be53b7155c900e0 (diff)
downloadvdr-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/timers.h b/timers.h
index cffd5d09..9d40992f 100644
--- a/timers.h
+++ b/timers.h
@@ -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);