summaryrefslogtreecommitdiffstats
path: root/src/posix/thread_posix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/posix/thread_posix.c')
-rw-r--r--src/posix/thread_posix.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/posix/thread_posix.c b/src/posix/thread_posix.c
new file mode 100644
index 0000000..2073448
--- /dev/null
+++ b/src/posix/thread_posix.c
@@ -0,0 +1,34 @@
+// Copyright 2012-2020 David Robillard <d@drobilla.net>
+// SPDX-License-Identifier: ISC
+
+#include "zix/thread.h"
+
+#include "../errno_status.h"
+
+#include "zix/status.h"
+
+#include <pthread.h>
+
+#include <stddef.h>
+
+ZixStatus
+zix_thread_create(ZixThread* thread,
+ size_t stack_size,
+ ZixThreadFunc function,
+ void* arg)
+{
+ pthread_attr_t attr;
+ pthread_attr_init(&attr);
+ pthread_attr_setstacksize(&attr, stack_size);
+
+ const int ret = pthread_create(thread, NULL, function, arg);
+
+ pthread_attr_destroy(&attr);
+ return zix_errno_status(ret);
+}
+
+ZixStatus
+zix_thread_join(ZixThread thread)
+{
+ return pthread_join(thread, NULL) ? ZIX_STATUS_ERROR : ZIX_STATUS_SUCCESS;
+}