diff options
Diffstat (limited to 'common/thread.c')
| -rw-r--r-- | common/thread.c | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/common/thread.c b/common/thread.c index d6d6c1a..f4a00cf 100644 --- a/common/thread.c +++ b/common/thread.c | |||
| @@ -21,13 +21,13 @@ | |||
| 21 | 21 | ||
| 22 | #include "thread.h" | 22 | #include "thread.h" |
| 23 | 23 | ||
| 24 | int thread_create(thread_t *thread, thread_func_t thread_func, void* data) | 24 | int thread_new(thread_t *thread, thread_func_t thread_func, void* data) |
| 25 | { | 25 | { |
| 26 | #ifdef WIN32 | 26 | #ifdef WIN32 |
| 27 | HANDLE th = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)thread_func, data, 0, NULL); | 27 | HANDLE th = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)thread_func, data, 0, NULL); |
| 28 | if (th == NULL) { | 28 | if (th == NULL) { |
| 29 | return -1; | 29 | return -1; |
| 30 | } | 30 | } |
| 31 | *thread = th; | 31 | *thread = th; |
| 32 | return 0; | 32 | return 0; |
| 33 | #else | 33 | #else |
| @@ -36,6 +36,13 @@ int thread_create(thread_t *thread, thread_func_t thread_func, void* data) | |||
| 36 | #endif | 36 | #endif |
| 37 | } | 37 | } |
| 38 | 38 | ||
| 39 | void thread_free(thread_t thread) | ||
| 40 | { | ||
| 41 | #ifdef WIN32 | ||
| 42 | CloseHandle(thread); | ||
| 43 | #endif | ||
| 44 | } | ||
| 45 | |||
| 39 | void thread_join(thread_t thread) | 46 | void thread_join(thread_t thread) |
| 40 | { | 47 | { |
| 41 | /* wait for thread to complete */ | 48 | /* wait for thread to complete */ |
| @@ -95,5 +102,5 @@ void thread_once(thread_once_t *once_control, void (*init_routine)(void)) | |||
| 95 | InterlockedExchange(&(once_control->lock), 0); | 102 | InterlockedExchange(&(once_control->lock), 0); |
| 96 | #else | 103 | #else |
| 97 | pthread_once(once_control, init_routine); | 104 | pthread_once(once_control, init_routine); |
| 98 | #endif | 105 | #endif |
| 99 | } | 106 | } |
