diff options
author | Guido van Rossum <guido@python.org> | 2000-05-08 13:41:38 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-05-08 13:41:38 (GMT) |
commit | 07bd90e92d9cb8982ad541dda59bc0f8867e9414 (patch) | |
tree | d294154d48f2c77978e9c4006769c5cd063444c4 /Include | |
parent | 8b41d5363a3b5b8554b4fb6e31ff71d9b0a702b9 (diff) | |
download | cpython-07bd90e92d9cb8982ad541dda59bc0f8867e9414.zip cpython-07bd90e92d9cb8982ad541dda59bc0f8867e9414.tar.gz cpython-07bd90e92d9cb8982ad541dda59bc0f8867e9414.tar.bz2 |
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 044ad5f..41d0eec 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 */ |