summaryrefslogtreecommitdiff
path: root/Python/thread.c
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-24 20:24:16 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-24 20:24:16 +0000
commita074dd040afda08292d427b60d6835e477662231 (patch)
tree3abc954f52073f9895841ec4c181b5e6c3abcffc /Python/thread.c
parent75346d5209e0c3e982fb175e08ecb6da54c044a8 (diff)
downloadcpython-a074dd040afda08292d427b60d6835e477662231.tar.gz
Disable support for Mach C Threads.
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 c440d43ee5..5b8ec10b5c 100644
--- a/Python/thread.c
+++ b/Python/thread.c
@@ -122,6 +122,7 @@ static size_t _pythread_stacksize = 0;
#endif
#ifdef C_THREADS
+#error Mach C Threads are now unsupported, and code will be removed in 3.3.
#include "thread_cthread.h"
#endif