diff options
Diffstat (limited to 'Python/thread_pthread.h')
-rw-r--r-- | Python/thread_pthread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/thread_pthread.h b/Python/thread_pthread.h index 2e594fe922..0f7ad20c2a 100644 --- a/Python/thread_pthread.h +++ b/Python/thread_pthread.h @@ -116,7 +116,7 @@ * other UNIX International compliant systems that don't have the full * pthread implementation. */ -#ifdef HAVE_PTHREAD_SIGMASK +#if defined(HAVE_PTHREAD_SIGMASK) && !defined(HAVE_BROKEN_PTHREAD_SIGMASK) # define SET_THREAD_SIGMASK pthread_sigmask #else # define SET_THREAD_SIGMASK sigprocmask |