diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-24 20:30:34 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-24 20:30:34 (GMT) |
commit | 1b8c7834086975a5aae08f36cd1cceb39c5d4a84 (patch) | |
tree | ab9a0ba7571a450575a5346716df9dd997a108c5 /Python/thread.c | |
parent | 86b21c190ae6696f2faea6dd25a4a343e771ef02 (diff) | |
download | cpython-1b8c7834086975a5aae08f36cd1cceb39c5d4a84.zip cpython-1b8c7834086975a5aae08f36cd1cceb39c5d4a84.tar.gz cpython-1b8c7834086975a5aae08f36cd1cceb39c5d4a84.tar.bz2 |
Disable support for SunOS LWP
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 5b8ec10..acb2103 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -109,6 +109,7 @@ static size_t _pythread_stacksize = 0; #endif #ifdef SUN_LWP +#error SunOS lightweight processes are now unsupported, and code will be removed in 3.3. #include "thread_lwp.h" #endif |