diff options
| author | 2014-03-21 20:41:56 +0100 | |
|---|---|---|
| committer | 2014-03-21 20:41:56 +0100 | |
| commit | a406cfaa4724b3a78683b732f016c9ad33cad187 (patch) | |
| tree | b635afe13c5544e58e5385da448d36a54e1b2d56 /common/thread.h | |
| parent | 982bc6a5ec6395151501175be2e16d5c056e166d (diff) | |
| download | libimobiledevice-a406cfaa4724b3a78683b732f016c9ad33cad187.tar.gz libimobiledevice-a406cfaa4724b3a78683b732f016c9ad33cad187.tar.bz2 | |
common: add thread_once() implementation
Diffstat (limited to 'common/thread.h')
| -rw-r--r-- | common/thread.h | 9 |
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> |
| 27 | typedef HANDLE thread_t; | 27 | typedef HANDLE thread_t; |
| 28 | typedef CRITICAL_SECTION mutex_t; | 28 | typedef CRITICAL_SECTION mutex_t; |
| 29 | typedef 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> |
| 31 | typedef pthread_t thread_t; | 36 | typedef pthread_t thread_t; |
| 32 | typedef pthread_mutex_t mutex_t; | 37 | typedef pthread_mutex_t mutex_t; |
| 38 | typedef pthread_once_t thread_once_t; | ||
| 39 | #define THREAD_ONCE_INIT PTHREAD_ONCE_INIT | ||
| 33 | #endif | 40 | #endif |
| 34 | 41 | ||
| 35 | typedef void* (*thread_func_t)(void* data); | 42 | typedef void* (*thread_func_t)(void* data); |
| @@ -42,4 +49,6 @@ void mutex_destroy(mutex_t* mutex); | |||
| 42 | void mutex_lock(mutex_t* mutex); | 49 | void mutex_lock(mutex_t* mutex); |
| 43 | void mutex_unlock(mutex_t* mutex); | 50 | void mutex_unlock(mutex_t* mutex); |
| 44 | 51 | ||
| 52 | void thread_once(thread_once_t *once_control, void (*init_routine)(void)); | ||
| 53 | |||
| 45 | #endif | 54 | #endif |
