From 9e8181b809c0dc40f86d66ce7e51db83aaeccd20 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 19 Sep 2000 00:46:46 +0000 Subject: Make better use of GNU Pth -- patch by Andy Dustman. I can't test this, so I'm just checking it in with blind faith in Andy. I've tested that it doesn't broeak a non-Pth build on Linux. Changes include: - There's a --with-pth configure option. - Instead of _GNU_PTH, we test for HAVE_PTH. - Better signal handling. - (The config.h.in file is regenerated in a slightly different order.) --- Python/thread.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Python/thread.c') diff --git a/Python/thread.c b/Python/thread.c index 9c75c2f9dac..f366a71ec76 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -109,13 +109,14 @@ void PyThread_init_thread(void) #include "thread_lwp.h" #endif -#ifdef _GNU_PTH +#ifdef HAVE_PTH #include "thread_pth.h" -#else +#undef _POSIX_THREADS +#endif + #ifdef _POSIX_THREADS #include "thread_pthread.h" #endif -#endif #ifdef C_THREADS #include "thread_cthread.h" -- cgit v1.2.3