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
commit86b21c190ae6696f2faea6dd25a4a343e771ef02 (patch)
treedcf5cfe5b6da89f828fc59a4e2054c73cab4dd49 /Python/thread.c
parent6103ab1d0b3361486960f3fa7711f20c91c535f5 (diff)
downloadcpython-git-86b21c190ae6696f2faea6dd25a4a343e771ef02.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