Mutexes are now created with PTHREAD_MUTEX_ERRORCHECK_NP

This commit is contained in:
Klaus Schmidinger
2003-10-18 13:20:01 +02:00
parent b658b1fe16
commit e7b6b2fff7
4 changed files with 12 additions and 15 deletions

View File

@@ -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);