From c3f82b6b8a1fbe34e52e3266a3932073bb714c2f Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 17 Jan 1995 16:29:31 +0000 Subject: nt thread support --- Python/thread.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Python/thread.c') diff --git a/Python/thread.c b/Python/thread.c index fb0f6a2851..2d80b097e9 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -126,6 +126,10 @@ void init_thread _P0() #include "thread_cthread.h" #endif +#ifdef NT_THREADS +#include "thread_nt.h" +#endif + /* #ifdef FOOBAR_THREADS #include "thread_foobar.h" -- cgit v1.2.1