We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c21546 commit 8d0bd93Copy full SHA for 8d0bd93
Include/internal/pycore_pythread.h
@@ -33,7 +33,7 @@ extern "C" {
33
# endif /* _POSIX_THREADS */
34
#endif /* _POSIX_THREADS */
35
36
-#if defined(_POSIX_THREADS) && !defined(HAVE_PTHREAD_STUBS)
+#if defined(_POSIX_THREADS) || defined(HAVE_PTHREAD_STUBS)
37
# define _USE_PTHREADS
38
#endif
39
Python/thread_pthread.h
@@ -132,7 +132,8 @@ init_condattr(void)
132
if (pthread_condattr_setclock(&ca, CLOCK_MONOTONIC) == 0) {
133
condattr_monotonic = &ca; // Use monotonic clock
134
}
135
-#endif
+# undef ca
136
+#endif // CONDATTR_MONOTONIC
137
138
139
int
0 commit comments