summaryrefslogtreecommitdiff
path: root/timers.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-01-03 11:46:57 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-01-03 11:46:57 +0100
commita9eed7bb7c6e5d92fe9be1d4aa090d17e971ab75 (patch)
tree75a7f9c92e8efc4531c33964b9e3d4a15ee44b04 /timers.c
parentf00372190d4b101a6dbf8b964fa0885908d2a9c9 (diff)
downloadvdr-a9eed7bb7c6e5d92fe9be1d4aa090d17e971ab75.tar.gz
vdr-a9eed7bb7c6e5d92fe9be1d4aa090d17e971ab75.tar.bz2
Added cTimer::SetPriority() to set a timer's priority
Diffstat (limited to 'timers.c')
-rw-r--r--timers.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/timers.c b/timers.c
index bcf24336..5ad4cbee 100644
--- a/timers.c
+++ b/timers.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: timers.c 1.38 2006/01/01 15:41:46 kls Exp $
+ * $Id: timers.c 1.39 2006/01/03 11:45:19 kls Exp $
*/
#include "timers.h"
@@ -462,6 +462,11 @@ void cTimer::SetInVpsMargin(bool InVpsMargin)
inVpsMargin = InVpsMargin;
}
+void cTimer::SetPriority(int Priority)
+{
+ priority = Priority;
+}
+
void cTimer::SetFlags(int Flags)
{
flags |= Flags;