summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2002-03-09 12:10:54 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2002-03-09 12:10:54 (GMT)
commit7d1cd6947d15f16a63b244a34ca7a28bef4a5214 (patch)
tree0a63a1bf17126587c49370505e9ba7c5617c341b /Python
parent3484a18af1ad1998bc0677befddf5d0a87f6a682 (diff)
downloadcpython-7d1cd6947d15f16a63b244a34ca7a28bef4a5214.zip
cpython-7d1cd6947d15f16a63b244a34ca7a28bef4a5214.tar.gz
cpython-7d1cd6947d15f16a63b244a34ca7a28bef4a5214.tar.bz2
Patch #504224: add plan9 threads include to thread.c.
Diffstat (limited to 'Python')
-rw-r--r--Python/thread.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Python/thread.c b/Python/thread.c
index f9a4de9..1979df0 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"