summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-06-02 13:54:04 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-06-02 13:54:04 +0200
commit7997b678f292bf59dcca79d2791258d219e7a676 (patch)
tree9fefbbb7a856027f622cce785028dff5b2189560 /thread.c
parent9847c7571dc8f76301dcff7a6eff8075f2179b09 (diff)
downloadvdr-7997b678f292bf59dcca79d2791258d219e7a676.tar.gz
vdr-7997b678f292bf59dcca79d2791258d219e7a676.tar.bz2
Removed the call to pthread_setschedparam(childTid, SCHED_RR, 0) in thread.c
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/thread.c b/thread.c
index 89d56e9f..c65f9e29 100644
--- a/thread.c
+++ b/thread.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: thread.c 1.54 2006/03/26 09:22:27 kls Exp $
+ * $Id: thread.c 1.55 2006/06/02 13:51:39 kls Exp $
*/
#include "thread.h"
@@ -255,7 +255,6 @@ bool cThread::Start(void)
active = running = true;
if (pthread_create(&childTid, NULL, (void *(*) (void *))&StartThread, (void *)this) == 0) {
pthread_detach(childTid); // auto-reap
- pthread_setschedparam(childTid, SCHED_RR, 0);
}
else {
LOG_ERROR;