From 05f89dd13bee427ffa43568ab95668da55b127cf Mon Sep 17 00:00:00 2001 From: Yusuke Endoh Date: Sat, 23 Jan 2021 13:23:26 +0900 Subject: thread_pthread.c: pthread_kill is not available on emscripten --- thread_pthread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'thread_pthread.c') diff --git a/thread_pthread.c b/thread_pthread.c index 97879f559a..894341c2a5 100644 --- a/thread_pthread.c +++ b/thread_pthread.c @@ -44,7 +44,7 @@ # define USE_EVENTFD (0) #endif -#if defined(SIGVTALRM) && !defined(__CYGWIN__) +#if defined(SIGVTALRM) && !defined(__CYGWIN__) && !defined(__EMSCRIPTEN__) # define USE_UBF_LIST 1 #endif -- cgit v1.2.1