summaryrefslogtreecommitdiff
path: root/src/mutex.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2011-09-20 16:08:52 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2011-09-20 16:08:52 +0200
commit5591f1602e6171492f5e4620e67d3addeacad7aa (patch)
treea51c16d5760cd7db9b1fbbf5bf3afeb9bae4ab18 /src/mutex.h
parent6611e83df0ed5b9bed42ff8cd549da0b5df11df2 (diff)
VSTi plugin version.
Diffstat (limited to 'src/mutex.h')
-rw-r--r--src/mutex.h4
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 {