summaryrefslogtreecommitdiff
path: root/sections.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-05-29 11:44:52 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2005-05-29 11:44:52 +0200
commite622406342c6ac1fefec5a3d2800b9c49951ab0d (patch)
tree74c8098cddc17635060fb5015ae1137afc513786 /sections.c
parent961e7a9115e52f1bd85c928a96821222c1022014 (diff)
downloadvdr-e622406342c6ac1fefec5a3d2800b9c49951ab0d.tar.gz
vdr-e622406342c6ac1fefec5a3d2800b9c49951ab0d.tar.bz2
Added cThread::SetPriority() and using it in cSectionHandler::Action() to reduce the priority of the section handler threads1.3.25
Diffstat (limited to 'sections.c')
-rw-r--r--sections.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sections.c b/sections.c
index 7c42a6ef..6552d56e 100644
--- a/sections.c
+++ b/sections.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: sections.c 1.10 2004/10/24 11:05:12 kls Exp $
+ * $Id: sections.c 1.11 2005/05/29 11:43:17 kls Exp $
*/
#include "sections.h"
@@ -167,6 +167,7 @@ void cSectionHandler::SetStatus(bool On)
void cSectionHandler::Action(void)
{
active = true;
+ SetPriority(19);
while (active) {
Lock();