diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2022-12-09 17:17:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-09 17:17:54 (GMT) |
commit | 8d0bd93ae28299f9b2cd11d3dd1a49599b62430a (patch) | |
tree | 571463aae460cf124bb43b1e1471c509b4701d85 /Python/thread_pthread.h | |
parent | 8c215466dbcdfbdedf0faba7c8ae64461069042b (diff) | |
download | cpython-8d0bd93ae28299f9b2cd11d3dd1a49599b62430a.zip cpython-8d0bd93ae28299f9b2cd11d3dd1a49599b62430a.tar.gz cpython-8d0bd93ae28299f9b2cd11d3dd1a49599b62430a.tar.bz2 |
gh-81057: Fix the wasm32-wasi Buildbot (gh-100139)
The build was broken by gh-100084.
https://github.com/python/cpython/issues/81057
Diffstat (limited to 'Python/thread_pthread.h')
-rw-r--r-- | Python/thread_pthread.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/thread_pthread.h b/Python/thread_pthread.h index ae312e9..76d6f3b 100644 --- a/Python/thread_pthread.h +++ b/Python/thread_pthread.h @@ -132,7 +132,8 @@ init_condattr(void) if (pthread_condattr_setclock(&ca, CLOCK_MONOTONIC) == 0) { condattr_monotonic = &ca; // Use monotonic clock } -#endif +# undef ca +#endif // CONDATTR_MONOTONIC } int |