From d21744a1dd1fb3daefdba552bb7307bd1358da2f Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 10 Sep 1998 03:04:40 +0000 Subject: [PATCH] Apparently on AIX when using gcc you need to call pthread_init() (which is not a POSIX threads call!). Reported and confirmed by Brad Howes. --- Python/thread_pthread.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python/thread_pthread.h b/Python/thread_pthread.h index 995ef51dc52..24f8f4e368b 100644 --- a/Python/thread_pthread.h +++ b/Python/thread_pthread.h @@ -120,6 +120,9 @@ typedef struct { */ static void _init_thread _P0() { +#if defined(_AIX) && defined(__GNUC__) + pthread_init(); +#endif } /*