summaryrefslogtreecommitdiff
path: root/Python/thread.c
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2002-03-09 12:10:54 +0000
committerMartin v. Löwis <martin@v.loewis.de>2002-03-09 12:10:54 +0000
commit9199ccc5bf56c466899b969cfd0d33a4d044a3c0 (patch)
treee722fcf6ac3056761259fbed405525043ae75933 /Python/thread.c
parent12086329d8fffdb656559fcc3fe451ffcf696780 (diff)
downloadcpython-9199ccc5bf56c466899b969cfd0d33a4d044a3c0.tar.gz
Patch #504224: add plan9 threads include to thread.c.
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 f9a4de9cb2..1979df01df 100644
--- a/Python/thread.c
+++ b/Python/thread.c
@@ -133,6 +133,10 @@ void PyThread_init_thread(void)
#include "thread_wince.h"
#endif
+#ifdef PLAN9_THREADS
+#include "thread_plan9.h"
+#endif
+
/*
#ifdef FOOBAR_THREADS
#include "thread_foobar.h"