summaryrefslogtreecommitdiff
path: root/Python/thread.c
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-24 20:35:52 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-24 20:35:52 +0000
commitdf312333c2011f462ad06f998263706e46995dc7 (patch)
treeccbef0dfe522487d25bd3e5535e1e5f18853f2cb /Python/thread.c
parent6f7971351b0484fca0ae17f74dd3eac6994902cd (diff)
downloadcpython-df312333c2011f462ad06f998263706e46995dc7.tar.gz
Disable GNU pth support
Diffstat (limited to 'Python/thread.c')
-rw-r--r--Python/thread.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/thread.c b/Python/thread.c
index acb2103884..f5722a7f13 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