summaryrefslogtreecommitdiffstats
path: root/Python/thread.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-01-17 16:29:31 (GMT)
committerGuido van Rossum <guido@python.org>1995-01-17 16:29:31 (GMT)
commitc3f82b6b8a1fbe34e52e3266a3932073bb714c2f (patch)
tree24e04c749aee250a2841e73629c6bc9cdec28e4d /Python/thread.c
parentb4e7e25fe6f7e2c075f463b58ebdcfe21dedaf06 (diff)
downloadcpython-c3f82b6b8a1fbe34e52e3266a3932073bb714c2f.zip
cpython-c3f82b6b8a1fbe34e52e3266a3932073bb714c2f.tar.gz
cpython-c3f82b6b8a1fbe34e52e3266a3932073bb714c2f.tar.bz2
nt thread support
Diffstat (limited to 'Python/thread.c')
-rw-r--r--Python/thread.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Python/thread.c b/Python/thread.c
index fb0f6a2..2d80b09 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"