summaryrefslogtreecommitdiff
path: root/thread.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-11-26 14:05:36 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2004-11-26 14:05:36 +0100
commiteb8405695b93c76ae7bf9b17df8767907fe5d4d8 (patch)
tree3fe1886c1c77992dd1ef54fefb7be69ee99eea82 /thread.h
parent4146ac1928fc5a60456bb43dccce352b984e57a3 (diff)
downloadvdr-eb8405695b93c76ae7bf9b17df8767907fe5d4d8.tar.gz
vdr-eb8405695b93c76ae7bf9b17df8767907fe5d4d8.tar.bz2
Some more changes to the 'childTid' handling in cThread
Diffstat (limited to 'thread.h')
-rw-r--r--thread.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/thread.h b/thread.h
index 2cc623bf..c3d8d06a 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.25 2004/11/26 13:33:26 kls Exp $
*/
#ifndef __THREAD_H
@@ -74,6 +74,7 @@ class cThread {
friend class cThreadLock;
private:
pthread_t parentTid, childTid;
+ cMutex childTidMutex;
cMutex mutex;
char *description;
static bool emergencyExitRequested;