summaryrefslogtreecommitdiffstats
path: root/src/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread.c')
-rw-r--r--src/thread.c11
1 files changed, 11 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