summaryrefslogtreecommitdiff
path: root/Python/thread.c
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-24 20:30:34 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-24 20:30:34 +0000
commit6f7971351b0484fca0ae17f74dd3eac6994902cd (patch)
tree005a3b835d85207023860956cf163d0e2fc5b1a5 /Python/thread.c
parenta074dd040afda08292d427b60d6835e477662231 (diff)
downloadcpython-6f7971351b0484fca0ae17f74dd3eac6994902cd.tar.gz
Disable support for SunOS LWP
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 5b8ec10b5c..acb2103884 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