diff options
Diffstat (limited to 'src/mutex.h')
-rw-r--r-- | src/mutex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mutex.h b/src/mutex.h index cf052ad..11704d4 100644 --- a/src/mutex.h +++ b/src/mutex.h @@ -28,7 +28,7 @@ #ifndef __PRACRO_MUTEX_H__ #define __PRACRO_MUTEX_H__ -#include <pthread.h> +struct mutex_private_t; class Mutex { public: @@ -40,7 +40,7 @@ public: void unlock(); private: - pthread_mutex_t mutex; + struct mutex_private_t* prv; }; class MutexAutolock { |