diff options
author | Yusuke Endoh <[email protected]> | 2021-01-23 13:23:26 +0900 |
---|---|---|
committer | Yusuke Endoh <[email protected]> | 2021-01-23 13:24:06 +0900 |
commit | 05f89dd13bee427ffa43568ab95668da55b127cf (patch) | |
tree | 422bd8b58ad249d2f34de3db105f7fcfe4fd4a5b /thread_pthread.c | |
parent | 33fb87cc9c1218463c54b0277f635318c1509629 (diff) |
thread_pthread.c: pthread_kill is not available on emscripten
Diffstat (limited to 'thread_pthread.c')
-rw-r--r-- | thread_pthread.c | 2 |
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 |