From 3c28863e081986a232d4d2bba3cd9b63e14263c0 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 16 Oct 2001 21:13:49 +0000 Subject: Partial patch from SF #452266, by Jason Petrone. This changes Pythread_start_thread() to return the thread ID, or -1 for an error. (It's technically an incompatible API change, but I doubt anyone calls it.) --- Python/thread.c | 1 - 1 file changed, 1 deletion(-) (limited to 'Python/thread.c') diff --git a/Python/thread.c b/Python/thread.c index 3558af0afc..df42f316be 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -111,7 +111,6 @@ void PyThread_init_thread(void) #ifdef HAVE_PTH #include "thread_pth.h" -#undef _POSIX_THREADS #endif #ifdef _POSIX_THREADS -- cgit v1.2.1