Skip to content

Commit 8d0bd93

Browse files
gh-81057: Fix the wasm32-wasi Buildbot (gh-100139)
The build was broken by gh-100084. #81057
1 parent 8c21546 commit 8d0bd93

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Include/internal/pycore_pythread.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ extern "C" {
3333
# endif /* _POSIX_THREADS */
3434
#endif /* _POSIX_THREADS */
3535

36-
#if defined(_POSIX_THREADS) && !defined(HAVE_PTHREAD_STUBS)
36+
#if defined(_POSIX_THREADS) || defined(HAVE_PTHREAD_STUBS)
3737
# define _USE_PTHREADS
3838
#endif
3939

Python/thread_pthread.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ init_condattr(void)
132132
if (pthread_condattr_setclock(&ca, CLOCK_MONOTONIC) == 0) {
133133
condattr_monotonic = &ca; // Use monotonic clock
134134
}
135-
#endif
135+
# undef ca
136+
#endif // CONDATTR_MONOTONIC
136137
}
137138

138139
int

0 commit comments

Comments
 (0)