summaryrefslogtreecommitdiff
path: root/src/jthread/jsemaphore.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/jthread/jsemaphore.h')
-rw-r--r--src/jthread/jsemaphore.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/jthread/jsemaphore.h b/src/jthread/jsemaphore.h
index bdce2e4ae..53538da1c 100644
--- a/src/jthread/jsemaphore.h
+++ b/src/jthread/jsemaphore.h
@@ -24,6 +24,14 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include <windows.h>
#include <assert.h>
#define MAX_SEMAPHORE_COUNT 1024
+#elif __MACH__
+#include <pthread.h>
+#include <mach/mach.h>
+#include <mach/task.h>
+#include <mach/semaphore.h>
+#include <sys/semaphore.h>
+#include <errno.h>
+#include <time.h>
#else
#include <pthread.h>
#include <semaphore.h>
@@ -44,9 +52,13 @@ public:
private:
#if defined(WIN32)
HANDLE m_hSemaphore;
+#elif __MACH__
+ semaphore_t m_semaphore;
#else
sem_t m_semaphore;
#endif
+ int semcount;
};
+
#endif /* JSEMAPHORE_H_ */