summaryrefslogtreecommitdiff
path: root/thread_pthread.c
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2021-01-23 13:23:26 +0900
committerYusuke Endoh <mame@ruby-lang.org>2021-01-23 13:24:06 +0900
commit05f89dd13bee427ffa43568ab95668da55b127cf (patch)
tree422bd8b58ad249d2f34de3db105f7fcfe4fd4a5b /thread_pthread.c
parent33fb87cc9c1218463c54b0277f635318c1509629 (diff)
downloadruby-05f89dd13bee427ffa43568ab95668da55b127cf.tar.gz
thread_pthread.c: pthread_kill is not available on emscripten
Diffstat (limited to 'thread_pthread.c')
-rw-r--r--thread_pthread.c2
1 files changed, 1 insertions, 1 deletions
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