diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-24 20:35:52 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-24 20:35:52 (GMT) |
commit | db6c567a720da3a71dd41671d4ceddf8300dc298 (patch) | |
tree | 59bd0d433c70e1cbcbe40ab925c06aeba663d01a /Python/thread.c | |
parent | 1b8c7834086975a5aae08f36cd1cceb39c5d4a84 (diff) | |
download | cpython-db6c567a720da3a71dd41671d4ceddf8300dc298.zip cpython-db6c567a720da3a71dd41671d4ceddf8300dc298.tar.gz cpython-db6c567a720da3a71dd41671d4ceddf8300dc298.tar.bz2 |
Disable GNU pth support
Diffstat (limited to 'Python/thread.c')
-rw-r--r-- | Python/thread.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/thread.c b/Python/thread.c index acb2103..f5722a7 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -114,6 +114,7 @@ static size_t _pythread_stacksize = 0; #endif #ifdef HAVE_PTH +#error GNU pth threads are now unsupported, and code will be removed in 3.3. #include "thread_pth.h" #undef _POSIX_THREADS #endif |