aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-04-16 05:19:34 -0700
committerChris Robinson <[email protected]>2014-04-16 05:19:34 -0700
commit18ab9cbbdd4b8db8e5cd9ea6155efafdb79fcad0 (patch)
tree236179c2cc0c0933946416a04a224e81a3eedc1f /OpenAL32
parent29cb5058c0b05cca8ebeb40d84aba8a8d2e11075 (diff)
Implement a C11-like thread wrapper and use it in mmdevapi and pulseaudio
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/threads.h82
1 files changed, 77 insertions, 5 deletions
diff --git a/OpenAL32/Include/threads.h b/OpenAL32/Include/threads.h
index 03589d15..8f564cd1 100644
--- a/OpenAL32/Include/threads.h
+++ b/OpenAL32/Include/threads.h
@@ -1,6 +1,8 @@
#ifndef AL_THREADS_H
#define AL_THREADS_H
+#include <time.h>
+
#include "alMain.h"
struct althread_info;
@@ -28,18 +30,55 @@ enum {
almtx_errorcheck = 8
};
-typedef struct alxtime {
- time_t sec;
- long nsec;
-} alxtime;
+
+typedef int (*althrd_start_t)(void*);
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
+typedef HANDLE althrd_t;
typedef CRITICAL_SECTION almtx_t;
+#ifndef __MINGW32__
+struct timespec {
+ time_t tv_sec;
+ long tv_nsec;
+};
+#endif
+
+
+int althrd_sleep(const struct timespec *ts, struct timespec *rem);
+
+
+#if 0
+inline althrd_t althrd_current(void)
+{
+ /* This is wrong. GetCurrentThread() returns a psuedo-handle of -1 which
+ * various functions will interpret as the calling thread. There is no
+ * apparent way to retrieve the same handle that was returned by
+ * CreateThread. */
+ return GetCurrentThread();
+}
+#endif
+
+inline int althrd_equal(althrd_t thr0, althrd_t thr1)
+{
+ return GetThreadId(thr0) == GetThreadId(thr1);
+}
+
+inline void althrd_exit(int res)
+{
+ ExitThread(res);
+}
+
+inline void althrd_yield(void)
+{
+ SwitchToThread();
+}
+
+
inline int almtx_lock(almtx_t *mtx)
{
if(!mtx) return althrd_error;
@@ -67,8 +106,36 @@ inline int almtx_trylock(almtx_t *mtx)
#include <pthread.h>
+typedef pthread_t althrd_t;
typedef pthread_mutex_t almtx_t;
+
+inline althrd_t althrd_current(void)
+{
+ return pthread_self();
+}
+
+inline int althrd_equal(althrd_t thr0, althrd_t thr1)
+{
+ return pthread_equal(thr0, thr1);
+}
+
+inline void althrd_exit(int res)
+{
+ pthread_exit((void*)(intptr_t)res);
+}
+
+inline void althrd_yield(void)
+{
+ sched_yield();
+}
+
+inline int althrd_sleep(const struct timespec *ts, struct timespec *rem)
+{
+ return nanosleep(ts, rem);
+}
+
+
inline int almtx_lock(almtx_t *mtx)
{
if(!mtx) return althrd_error;
@@ -93,8 +160,13 @@ inline int almtx_trylock(almtx_t *mtx)
#endif
+
+int althrd_create(althrd_t *thr, althrd_start_t func, void *arg);
+int althrd_detach(althrd_t thr);
+int althrd_join(althrd_t thr, int *res);
+
int almtx_init(almtx_t *mtx, int type);
void almtx_destroy(almtx_t *mtx);
-int almtx_timedlock(almtx_t *mtx, const alxtime *xt);
+int almtx_timedlock(almtx_t *mtx, const struct timespec *ts);
#endif /* AL_THREADS_H */