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.

作者 pitrou
收信人 Albert.Strasheim, aljungberg, asksol, bquinlan, brian.curtin, gdb, gkcn, hongqn, jnoller, pitrou, vlasovskikh, vstinner
日期 2011-05-08.00:14:51
SpamBayes Score 2.0891093e-06
Marked as misclassified
Message-id <1304813688.3526.5.camel@localhost.localdomain>
In-reply-to <1304801718.91.0.267362502877.issue9205@psf.upfronthosting.co.za>
内容
> Hum, I get a strange skip on a XP buildbot:
> 
> [224/354] test_multiprocessing
> test_multiprocessing skipped -- DLL load failed: The specified
> procedure could not be found.
> 
> Yet _multiprocessing was compiled fine... Does anyone know what it
> means?

Ok, the culprit is CancelIoEx(), which is only supported under Vista and
later (but, strangely enough, compiles fine under XP).
I need to use CancelIo() instead, which will lead me to change the
implementation strategy slightly (the fact that CancelIo() is
thread-specific makes it unsuitable for a tp_dealloc).
历史
日期 用户 动作 参数
2011-05-08 00:14:51pitrou修改recipients: + pitrou, bquinlan, vstinner, jnoller, hongqn, brian.curtin, asksol, vlasovskikh, gdb, Albert.Strasheim, aljungberg, gkcn
2011-05-08 00:14:51pitrou链接issue9205 messages
2011-05-08 00:14:51pitrou创建