summaryrefslogtreecommitdiffstats
path: root/common/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/thread.h')
-rw-r--r--common/thread.h33
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>
27typedef HANDLE thread_t; 29typedef HANDLE THREAD_T;
28typedef CRITICAL_SECTION mutex_t; 30typedef CRITICAL_SECTION mutex_t;
29typedef volatile struct { 31typedef 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>
37typedef pthread_t thread_t; 40#include <signal.h>
41typedef pthread_t THREAD_T;
38typedef pthread_mutex_t mutex_t; 42typedef pthread_mutex_t mutex_t;
39typedef pthread_once_t thread_once_t; 43typedef 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
44typedef void* (*thread_func_t)(void* data); 49typedef void* (*thread_func_t)(void* data);
45 50
46int thread_new(thread_t* thread, thread_func_t thread_func, void* data); 51int thread_new(THREAD_T* thread, thread_func_t thread_func, void* data);
47void thread_free(thread_t thread); 52void thread_detach(THREAD_T thread);
48void thread_join(thread_t thread); 53void thread_free(THREAD_T thread);
54int thread_join(THREAD_T thread);
55int thread_alive(THREAD_T thread);
56
57int 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
50void mutex_init(mutex_t* mutex); 69void mutex_init(mutex_t* mutex);
51void mutex_destroy(mutex_t* mutex); 70void mutex_destroy(mutex_t* mutex);