summaryrefslogtreecommitdiff
path: root/Include
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-05-08 13:41:38 +0000
committerGuido van Rossum <guido@python.org>2000-05-08 13:41:38 +0000
commit739e04ad980da883c5086d5d892ac2422bd6bce9 (patch)
tree02c7a9d4014e0a31dfc26cd7ab35aaf6f6dab3b7 /Include
parenta35c7b08ca34186d8e354763be8d0d8e863c0496 (diff)
downloadcpython-739e04ad980da883c5086d5d892ac2422bd6bce9.tar.gz
Andy Dustman: add GNU pth user-space thread support.
Diffstat (limited to 'Include')
-rw-r--r--Include/Python.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Include/Python.h b/Include/Python.h
index 044ad5f521..41d0eeccca 100644
--- a/Include/Python.h
+++ b/Include/Python.h
@@ -128,4 +128,8 @@ PERFORMANCE OF THIS SOFTWARE.
#define Py_file_input 257
#define Py_eval_input 258
+#ifdef _GNU_PTH
+/* GNU pth user-space thread support */
+#include <pth.h>
+#endif
#endif /* !Py_PYTHON_H */