diff options
| author | 2019-06-11 01:12:49 +0200 | |
|---|---|---|
| committer | 2019-06-11 01:12:49 +0200 | |
| commit | 59adbacef6d400d4c6458f26daddda24bcdfd635 (patch) | |
| tree | fab41dc53822655f4be988017be4031be64cac33 /common/thread.h | |
| parent | 34444782e22ebfd2abc9e5e9c27e170a839ff66b (diff) | |
| download | libimobiledevice-59adbacef6d400d4c6458f26daddda24bcdfd635.tar.gz libimobiledevice-59adbacef6d400d4c6458f26daddda24bcdfd635.tar.bz2 | |
common: Update thread.c/.h to match the one from libusbmuxd
Diffstat (limited to 'common/thread.h')
| -rw-r--r-- | common/thread.h | 33 |
1 files changed, 26 insertions, 7 deletions
diff --git a/common/thread.h b/common/thread.h index bd53c5b..23e4510 100644 --- a/common/thread.h +++ b/common/thread.h | |||
| @@ -1,8 +1,8 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * thread.h | 2 | * thread.h |
| 3 | * | 3 | * |
| 4 | * Copyright (c) 2012 Martin Szulecki All Rights Reserved. | 4 | * Copyright (c) 2012-2019 Nikias Bassen, All Rights Reserved. |
| 5 | * Copyright (c) 2012 Nikias Bassen All Rights Reserved. | 5 | * Copyright (c) 2012 Martin Szulecki, All Rights Reserved. |
| 6 | * | 6 | * |
| 7 | * This library is free software; you can redistribute it and/or | 7 | * This library is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU Lesser General Public | 8 | * modify it under the terms of the GNU Lesser General Public |
| @@ -22,9 +22,11 @@ | |||
| 22 | #ifndef __THREAD_H | 22 | #ifndef __THREAD_H |
| 23 | #define __THREAD_H | 23 | #define __THREAD_H |
| 24 | 24 | ||
| 25 | #include <stddef.h> | ||
| 26 | |||
| 25 | #ifdef WIN32 | 27 | #ifdef WIN32 |
| 26 | #include <windows.h> | 28 | #include <windows.h> |
| 27 | typedef HANDLE thread_t; | 29 | typedef HANDLE THREAD_T; |
| 28 | typedef CRITICAL_SECTION mutex_t; | 30 | typedef CRITICAL_SECTION mutex_t; |
| 29 | typedef volatile struct { | 31 | typedef volatile struct { |
| 30 | LONG lock; | 32 | LONG lock; |
| @@ -32,20 +34,37 @@ typedef volatile struct { | |||
| 32 | } thread_once_t; | 34 | } thread_once_t; |
| 33 | #define THREAD_ONCE_INIT {0, 0} | 35 | #define THREAD_ONCE_INIT {0, 0} |
| 34 | #define THREAD_ID GetCurrentThreadId() | 36 | #define THREAD_ID GetCurrentThreadId() |
| 37 | #define THREAD_T_NULL (THREAD_T)NULL | ||
| 35 | #else | 38 | #else |
| 36 | #include <pthread.h> | 39 | #include <pthread.h> |
| 37 | typedef pthread_t thread_t; | 40 | #include <signal.h> |
| 41 | typedef pthread_t THREAD_T; | ||
| 38 | typedef pthread_mutex_t mutex_t; | 42 | typedef pthread_mutex_t mutex_t; |
| 39 | typedef pthread_once_t thread_once_t; | 43 | typedef pthread_once_t thread_once_t; |
| 40 | #define THREAD_ONCE_INIT PTHREAD_ONCE_INIT | 44 | #define THREAD_ONCE_INIT PTHREAD_ONCE_INIT |
| 41 | #define THREAD_ID pthread_self() | 45 | #define THREAD_ID pthread_self() |
| 46 | #define THREAD_T_NULL (THREAD_T)NULL | ||
| 42 | #endif | 47 | #endif |
| 43 | 48 | ||
| 44 | typedef void* (*thread_func_t)(void* data); | 49 | typedef void* (*thread_func_t)(void* data); |
| 45 | 50 | ||
| 46 | int thread_new(thread_t* thread, thread_func_t thread_func, void* data); | 51 | int thread_new(THREAD_T* thread, thread_func_t thread_func, void* data); |
| 47 | void thread_free(thread_t thread); | 52 | void thread_detach(THREAD_T thread); |
| 48 | void thread_join(thread_t thread); | 53 | void thread_free(THREAD_T thread); |
| 54 | int thread_join(THREAD_T thread); | ||
| 55 | int thread_alive(THREAD_T thread); | ||
| 56 | |||
| 57 | int thread_cancel(THREAD_T thread); | ||
| 58 | |||
| 59 | #ifdef WIN32 | ||
| 60 | #undef HAVE_THREAD_CLEANUP | ||
| 61 | #else | ||
| 62 | #ifdef HAVE_PTHREAD_CANCEL | ||
| 63 | #define HAVE_THREAD_CLEANUP 1 | ||
| 64 | #define thread_cleanup_push(routine, arg) pthread_cleanup_push(routine, arg) | ||
| 65 | #define thread_cleanup_pop(execute) pthread_cleanup_pop(execute) | ||
| 66 | #endif | ||
| 67 | #endif | ||
| 49 | 68 | ||
| 50 | void mutex_init(mutex_t* mutex); | 69 | void mutex_init(mutex_t* mutex); |
| 51 | void mutex_destroy(mutex_t* mutex); | 70 | void mutex_destroy(mutex_t* mutex); |
