diff options
author | Guido van Rossum <guido@python.org> | 2000-05-08 13:41:38 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-05-08 13:41:38 +0000 |
commit | 739e04ad980da883c5086d5d892ac2422bd6bce9 (patch) | |
tree | 02c7a9d4014e0a31dfc26cd7ab35aaf6f6dab3b7 /Include | |
parent | a35c7b08ca34186d8e354763be8d0d8e863c0496 (diff) | |
download | cpython-739e04ad980da883c5086d5d892ac2422bd6bce9.tar.gz |
Andy Dustman: add GNU pth user-space thread support.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/Python.h | 4 |
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 */ |