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 rpetrov
Recipients rpetrov
Date 2013-02-06.22:36:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1360190170.63.0.398498965196.issue17148@psf.upfronthosting.co.za>
In-reply-to
Content
Proposed  patch adds test for NT-threads to configure script . It was part of issue3871 and is related only to threading support.

Unlike previous one new patch avoid changes in code like #if A undef B or similar.
For instance 
- avoid presence of header pthread.h in Python/ceval.c and  Python/thread.c (HAVE_PTHREAD_H dependency)
- avoid detection of function pthread_kill  in Modules/signalmodule.c (HAVE_PTHREAD_KILL)
- avoid sem_open() Modules/_multiprocessing/multiprocessing.c (HAVE_SEM_OPEN)
( see patch for reason to skip those checks at configure time)
History
Date User Action Args
2013-02-06 22:36:10rpetrovsetrecipients: + rpetrov
2013-02-06 22:36:10rpetrovsetmessageid: <1360190170.63.0.398498965196.issue17148@psf.upfronthosting.co.za>
2013-02-06 22:36:10rpetrovlinkissue17148 messages
2013-02-06 22:36:10rpetrovcreate