From 0388727827064172ba49ca222fc221a1be4a3694 Mon Sep 17 00:00:00 2001 From: walkingeyerobot Date: Tue, 6 Feb 2024 17:26:12 -0500 Subject: Fallback to pthreads if threads aren't available (#2385) --- wasm2c/wasm-rt.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/wasm2c/wasm-rt.h b/wasm2c/wasm-rt.h index 32a29c98..f06748eb 100644 --- a/wasm2c/wasm-rt.h +++ b/wasm2c/wasm-rt.h @@ -58,19 +58,19 @@ extern "C" { #endif /** - * Apple and Windows devices don't implement the C11 threads.h. We use pthreads - * on Apple devices, and CriticalSection APIs for Windows. + * Many devices don't implement the C11 threads.h. We use CriticalSection APIs + * for Windows and pthreads on other platforms where threads are not available. */ #ifdef WASM_RT_C11_AVAILABLE -#ifdef __APPLE__ -#include -#define WASM_RT_MUTEX pthread_mutex_t -#define WASM_RT_USE_PTHREADS 1 -#elif defined(_WIN32) +#if defined(_WIN32) #include #define WASM_RT_MUTEX CRITICAL_SECTION #define WASM_RT_USE_CRITICALSECTION 1 +#elif defined(__APPLE__) || defined(__STDC_NO_THREADS__) +#include +#define WASM_RT_MUTEX pthread_mutex_t +#define WASM_RT_USE_PTHREADS 1 #else #include #define WASM_RT_MUTEX mtx_t -- cgit v1.2.3