summaryrefslogtreecommitdiff
path: root/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'thread.h')
-rw-r--r--thread.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/thread.h b/thread.h
index 2cc623b..6e096a6 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.24 2004/10/24 11:00:32 kls Exp $
+ * $Id: thread.h 1.26 2004/12/19 10:43:10 kls Exp $
*/
#ifndef __THREAD_H
@@ -73,7 +73,8 @@ public:
class cThread {
friend class cThreadLock;
private:
- pthread_t parentTid, childTid;
+ bool running;
+ pthread_t childTid;
cMutex mutex;
char *description;
static bool emergencyExitRequested;