summaryrefslogtreecommitdiffstats
path: root/common/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/thread.h')
-rw-r--r--common/thread.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/common/thread.h b/common/thread.h
index e74ee74..5d20083 100644
--- a/common/thread.h
+++ b/common/thread.h
@@ -26,10 +26,17 @@
26#include <windows.h> 26#include <windows.h>
27typedef HANDLE thread_t; 27typedef HANDLE thread_t;
28typedef CRITICAL_SECTION mutex_t; 28typedef CRITICAL_SECTION mutex_t;
29typedef volatile struct {
30 LONG lock;
31 int state;
32} thread_once_t;
33#define THREAD_ONCE_INIT {0, 0}
29#else 34#else
30#include <pthread.h> 35#include <pthread.h>
31typedef pthread_t thread_t; 36typedef pthread_t thread_t;
32typedef pthread_mutex_t mutex_t; 37typedef pthread_mutex_t mutex_t;
38typedef pthread_once_t thread_once_t;
39#define THREAD_ONCE_INIT PTHREAD_ONCE_INIT
33#endif 40#endif
34 41
35typedef void* (*thread_func_t)(void* data); 42typedef void* (*thread_func_t)(void* data);
@@ -42,4 +49,6 @@ void mutex_destroy(mutex_t* mutex);
42void mutex_lock(mutex_t* mutex); 49void mutex_lock(mutex_t* mutex);
43void mutex_unlock(mutex_t* mutex); 50void mutex_unlock(mutex_t* mutex);
44 51
52void thread_once(thread_once_t *once_control, void (*init_routine)(void));
53
45#endif 54#endif