summaryrefslogtreecommitdiff
path: root/thread.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-10-18 13:20:01 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2003-10-18 13:20:01 +0200
commite7b6b2fff72cb7221d171b096ea844467af635fe (patch)
tree5ca3163fd5cea2de5f7a5d5c0c212f8c1d68d7d4 /thread.h
parentb658b1fe16152683fecb0f1d3c2a1e65edfb0969 (diff)
downloadvdr-e7b6b2fff72cb7221d171b096ea844467af635fe.tar.gz
vdr-e7b6b2fff72cb7221d171b096ea844467af635fe.tar.bz2
Mutexes are now created with PTHREAD_MUTEX_ERRORCHECK_NP
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 ec4e1395..fc60588c 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.17 2003/10/18 12:13:10 kls Exp $
+ * $Id: thread.h 1.18 2003/10/18 12:56:20 kls Exp $
*/
#ifndef __THREAD_H
@@ -32,7 +32,6 @@ class cMutex {
friend class cCondVar;
private:
pthread_mutex_t mutex;
- pthread_t lockingTid;
int locked;
public:
cMutex(void);