summaryrefslogtreecommitdiff
path: root/Python/thread.c
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-24 20:43:49 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-24 20:43:49 +0000
commit2489e2c722274e0424466615053d0da998766ac4 (patch)
tree95331ba5c5f8c6193f4ded8a0931ab670c2bbf49 /Python/thread.c
parentdf312333c2011f462ad06f998263706e46995dc7 (diff)
downloadcpython-2489e2c722274e0424466615053d0da998766ac4.tar.gz
Disable support for Irix threads
Diffstat (limited to 'Python/thread.c')
-rw-r--r--Python/thread.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/Python/thread.c b/Python/thread.c
index f5722a7f13..a839481b4f 100644
--- a/Python/thread.c
+++ b/Python/thread.c
@@ -23,12 +23,6 @@
#include <stdlib.h>
-#ifdef __sgi
-#ifndef HAVE_PTHREAD_H /* XXX Need to check in configure.in */
-#undef _POSIX_THREADS
-#endif
-#endif
-
#include "pythread.h"
#ifndef _POSIX_THREADS
@@ -101,6 +95,7 @@ PyThread_init_thread(void)
static size_t _pythread_stacksize = 0;
#ifdef SGI_THREADS
+#error SGI Irix threads are now unsupported, and code will be removed in 3.3.
#include "thread_sgi.h"
#endif