diff options
author | Guido van Rossum <guido@python.org> | 1995-01-17 16:29:31 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-17 16:29:31 +0000 |
commit | bd0cba37614d1614993f623f92c125a772175920 (patch) | |
tree | 525218b8a5ed89d7ae4d53598fb335453d981cfb /Python/thread.c | |
parent | 9cccc3fff314cf73870c986bdaf166f24972607c (diff) | |
download | cpython-bd0cba37614d1614993f623f92c125a772175920.tar.gz |
nt thread support
Diffstat (limited to 'Python/thread.c')
-rw-r--r-- | Python/thread.c | 4 |
1 files changed, 4 insertions, 0 deletions
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" |