diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-24 20:24:16 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-24 20:24:16 (GMT) |
commit | 86b21c190ae6696f2faea6dd25a4a343e771ef02 (patch) | |
tree | dcf5cfe5b6da89f828fc59a4e2054c73cab4dd49 /Python | |
parent | 6103ab1d0b3361486960f3fa7711f20c91c535f5 (diff) | |
download | cpython-86b21c190ae6696f2faea6dd25a4a343e771ef02.zip cpython-86b21c190ae6696f2faea6dd25a4a343e771ef02.tar.gz cpython-86b21c190ae6696f2faea6dd25a4a343e771ef02.tar.bz2 |
Disable support for Mach C Threads.
Diffstat (limited to 'Python')
-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 c440d43..5b8ec10 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 |