summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--threading_pthread.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/threading_pthread.c b/threading_pthread.c
index 4f7cba1a..e6b9df9c 100644
--- a/threading_pthread.c
+++ b/threading_pthread.c
@@ -48,6 +48,7 @@ thread_start (void (*fn)(void *ctx), void *ctx) {
intptr_t
thread_start_low_priority (void (*fn)(void *ctx), void *ctx) {
+#ifdef __linux__
pthread_t tid;
pthread_attr_t attr;
int s = pthread_attr_init (&attr);
@@ -82,6 +83,9 @@ thread_start_low_priority (void (*fn)(void *ctx), void *ctx) {
return 0;
}
return tid;
+#else
+ return thread_start (fn, ctx);
+#endif
}
int