summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2017-11-05 16:14:32 +0100
committerGravatar Nikias Bassen2017-11-05 16:14:32 +0100
commitf9b529b75982902c9b31ee59fe73e2c56b8ba237 (patch)
tree3c2a442801161040ac0aad25a67abfad6cc764ee
parent22743f7d85380ec68af2b7c94fab110d4b611969 (diff)
downloadidevicerestore-f9b529b75982902c9b31ee59fe73e2c56b8ba237.tar.gz
idevicerestore-f9b529b75982902c9b31ee59fe73e2c56b8ba237.tar.bz2
thread: Add 'thread_alive' helper
-rw-r--r--src/thread.c11
-rw-r--r--src/thread.h1
2 files changed, 12 insertions, 0 deletions
diff --git a/src/thread.c b/src/thread.c
index fdc8112..b84ee66 100644
--- a/src/thread.c
+++ b/src/thread.c
@@ -53,6 +53,17 @@ void thread_join(thread_t thread)
#endif
}
+int thread_alive(thread_t thread)
+{
+ if (!thread)
+ return 0;
+#ifdef WIN32
+ return WaitForSingleObject(thread, 0) == WAIT_TIMEOUT;
+#else
+ return pthread_kill(thread, 0) == 0;
+#endif
+}
+
void mutex_init(mutex_t* mutex)
{
#ifdef WIN32
diff --git a/src/thread.h b/src/thread.h
index bd53c5b..11e789a 100644
--- a/src/thread.h
+++ b/src/thread.h
@@ -46,6 +46,7 @@ typedef void* (*thread_func_t)(void* data);
int thread_new(thread_t* thread, thread_func_t thread_func, void* data);
void thread_free(thread_t thread);
void thread_join(thread_t thread);
+int thread_alive(thread_t thread);
void mutex_init(mutex_t* mutex);
void mutex_destroy(mutex_t* mutex);