summaryrefslogtreecommitdiffstats
path: root/common/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/thread.c')
-rw-r--r--common/thread.c48
1 files changed, 41 insertions, 7 deletions
diff --git a/common/thread.c b/common/thread.c
index fdc8112..eb535ab 100644
--- a/common/thread.c
+++ b/common/thread.c
@@ -1,8 +1,8 @@
1/* 1/*
2 * thread.c 2 * thread.c
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
@@ -19,9 +19,12 @@
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22#ifdef HAVE_CONFIG_H
23#include <config.h>
24#endif
22#include "thread.h" 25#include "thread.h"
23 26
24int thread_new(thread_t *thread, thread_func_t thread_func, void* data) 27int thread_new(THREAD_T *thread, thread_func_t thread_func, void* data)
25{ 28{
26#ifdef WIN32 29#ifdef WIN32
27 HANDLE th = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)thread_func, data, 0, NULL); 30 HANDLE th = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)thread_func, data, 0, NULL);
@@ -36,20 +39,51 @@ int thread_new(thread_t *thread, thread_func_t thread_func, void* data)
36#endif 39#endif
37} 40}
38 41
39void thread_free(thread_t thread) 42void thread_detach(THREAD_T thread)
40{ 43{
41#ifdef WIN32 44#ifdef WIN32
42 CloseHandle(thread); 45 CloseHandle(thread);
46#else
47 pthread_detach(thread);
43#endif 48#endif
44} 49}
45 50
46void thread_join(thread_t thread) 51void thread_free(THREAD_T thread)
52{
53#ifdef WIN32
54 CloseHandle(thread);
55#endif
56}
57
58int thread_join(THREAD_T thread)
47{ 59{
48 /* wait for thread to complete */ 60 /* wait for thread to complete */
49#ifdef WIN32 61#ifdef WIN32
50 WaitForSingleObject(thread, INFINITE); 62 return (int)WaitForSingleObject(thread, INFINITE);
63#else
64 return pthread_join(thread, NULL);
65#endif
66}
67
68int thread_alive(THREAD_T thread)
69{
70#ifdef WIN32
71 return WaitForSingleObject(thread, 0) == WAIT_TIMEOUT;
51#else 72#else
52 pthread_join(thread, NULL); 73 return pthread_kill(thread, 0) == 0;
74#endif
75}
76
77int thread_cancel(THREAD_T thread)
78{
79#ifdef WIN32
80 return -1;
81#else
82#ifdef HAVE_PTHREAD_CANCEL
83 return pthread_cancel(thread);
84#else
85 return -1;
86#endif
53#endif 87#endif
54} 88}
55 89