summaryrefslogtreecommitdiff
path: root/thread.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-10-24 10:34:20 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2004-10-24 10:34:20 +0200
commit70e60380562fb25a7acce9b47c75842d60722dd0 (patch)
tree7cd5a91474795be92ace936e24678fb5f1e890f0 /thread.h
parent73fde7480a71c1f92d26c333bad06d12dd5019be (diff)
downloadvdr-70e60380562fb25a7acce9b47c75842d60722dd0.tar.gz
vdr-70e60380562fb25a7acce9b47c75842d60722dd0.tar.bz2
Added some checks when cancelling a thread and removed the usleep() in cThread::Start(); removed 'running' from cThread
Diffstat (limited to 'thread.h')
-rw-r--r--thread.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/thread.h b/thread.h
index d57f0b6b..da49bcdd 100644
--- a/thread.h
+++ b/thread.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: thread.h 1.22 2004/10/24 09:46:36 kls Exp $
+ * $Id: thread.h 1.23 2004/10/24 10:28:48 kls Exp $
*/
#ifndef __THREAD_H
@@ -71,7 +71,6 @@ class cThread {
private:
pthread_t parentTid, childTid;
cMutex mutex;
- bool running;
char *description;
static bool emergencyExitRequested;
static void *StartThread(cThread *Thread);