This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients vstinner
Date 2011-04-19.09:45:42
SpamBayes Score 0.14431697
Marked as misclassified No
Message-id <1303206344.55.0.955794008969.issue11876@psf.upfronthosting.co.za>
In-reply-to
Content
Python/thread.c contains the following messages:

#ifdef SGI_THREADS
#error SGI Irix threads are now unsupported, and code will be removed in 3.3.
#include "thread_sgi.h"
#endif


#ifdef SUN_LWP
#error SunOS lightweight processes are now unsupported, and code will be removed in 3.3.
#include "thread_lwp.h"
#endif

#ifdef HAVE_PTH
#error GNU pth threads are now unsupported, and code will be removed in 3.3.
#include "thread_pth.h"
#undef _POSIX_THREADS
#endif

#ifdef C_THREADS
#error Mach C Threads are now unsupported, and code will be removed in 3.3.
#include "thread_cthread.h"
#endif
History
Date User Action Args
2011-04-19 09:45:44vstinnersetrecipients: + vstinner
2011-04-19 09:45:44vstinnersetmessageid: <1303206344.55.0.955794008969.issue11876@psf.upfronthosting.co.za>
2011-04-19 09:45:43vstinnerlinkissue11876 messages
2011-04-19 09:45:42vstinnercreate