summaryrefslogtreecommitdiffstats
path: root/Python/thread.c
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-24 20:30:34 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-24 20:30:34 (GMT)
commit1b8c7834086975a5aae08f36cd1cceb39c5d4a84 (patch)
treeab9a0ba7571a450575a5346716df9dd997a108c5 /Python/thread.c
parent86b21c190ae6696f2faea6dd25a4a343e771ef02 (diff)
downloadcpython-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.c1
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