diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-05-29 11:44:52 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-05-29 11:44:52 +0200 |
commit | e622406342c6ac1fefec5a3d2800b9c49951ab0d (patch) | |
tree | 74c8098cddc17635060fb5015ae1137afc513786 /thread.c | |
parent | 961e7a9115e52f1bd85c928a96821222c1022014 (diff) | |
download | vdr-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 'thread.c')
-rw-r--r-- | thread.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: thread.c 1.42 2005/05/06 14:39:15 kls Exp $ + * $Id: thread.c 1.43 2005/05/29 11:40:30 kls Exp $ */ #include "thread.h" @@ -208,6 +208,12 @@ cThread::~cThread() free(description); } +void cThread::SetPriority(int Priority) +{ + if (setpriority(PRIO_PROCESS, 0, Priority) < 0) + LOG_ERROR; +} + void cThread::SetDescription(const char *Description, ...) { free(description); |