diff options
author | Christian Heimes <christian@python.org> | 2022-01-13 08:46:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-13 08:46:04 (GMT) |
commit | a6ca8eee2254762422f90cf94fbaac34f85db780 (patch) | |
tree | 6017b6edc8445b18afc5ec23c5e75a4bdb983ba5 /Include/pythread.h | |
parent | 1de60155d5d01be2924e72fb68dd13d4fd00acd7 (diff) | |
download | cpython-a6ca8eee2254762422f90cf94fbaac34f85db780.zip cpython-a6ca8eee2254762422f90cf94fbaac34f85db780.tar.gz cpython-a6ca8eee2254762422f90cf94fbaac34f85db780.tar.bz2 |
bpo-46315: Add ifdef HAVE_ feature checks for WASI compatibility (GH-30507)
Diffstat (limited to 'Include/pythread.h')
-rw-r--r-- | Include/pythread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pythread.h b/Include/pythread.h index 1a6092c..034e660 100644 --- a/Include/pythread.h +++ b/Include/pythread.h @@ -125,7 +125,7 @@ Py_DEPRECATED(3.7) PyAPI_FUNC(void) PyThread_ReInitTLS(void); typedef struct _Py_tss_t Py_tss_t; /* opaque */ #ifndef Py_LIMITED_API -#if defined(_POSIX_THREADS) +#ifdef HAVE_PTHREAD_H /* Darwin needs pthread.h to know type name the pthread_key_t. */ # include <pthread.h> # define NATIVE_TSS_KEY_T pthread_key_t |