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 pitrou
Recipients mark.dickinson, pitrou, vstinner
Date 2013-04-17.19:25:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1366226727.47.0.55075488936.issue17782@psf.upfronthosting.co.za>
In-reply-to
Content
x32 is a special Linux ABI on x86-64 CPUs. When compiling for x32, there's a failure in test_sigtimedwait. The failure is due to the fact that on x32, "long" is 32 bits but "timespec.tv_nsec" is 64 bits. Therefore we can't pass the pointer to tv_nsec directly to _PyTime_ObjectToTimespec.

Patch attached.
History
Date User Action Args
2013-04-17 19:25:27pitrousetrecipients: + pitrou, mark.dickinson, vstinner
2013-04-17 19:25:27pitrousetmessageid: <1366226727.47.0.55075488936.issue17782@psf.upfronthosting.co.za>
2013-04-17 19:25:27pitroulinkissue17782 messages
2013-04-17 19:25:27pitroucreate