➜

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.

classification
标题: mingw: nt thread model detection
类型: enhancement Stage: resolved
Components: Build Versions: Python 3.5
process
状态: closed Resolution: wont fix
Dependencies: 后续: MinGW is unsupported - close all open issues and list them here.
View: 45538
分配给: 抄送列表: loewis, rpetrov, steve.dower, tim.golden, zach.ware
优先级: normal 关键字: patch

Created on 2013-02-06 22:36 by rpetrov, last changed 2022-04-11 14:57 by admin. This issue is now closed.

文件
文件名 上传时间 Description 编辑
0001-MINGW-BASE-use-NT-thread-model.patch rpetrov, 2013-02-06 22:36 review
0001-MINGW-issue17148-nt-thread-model-detection.patch rpetrov, 2014-08-03 06:09 status on 2014-08-02 review
Messages (2)
msg181576 - (view) Author: Roumen Petrov (rpetrov) * 日期: 2013-02-06 22:36
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)
msg223376 - (view) Author: Mark Lawrence (BreamoreBoy) * 日期: 2014-07-17 21:48
Guys I asked on IRC and was advised to add you to the nosy list to see if you can help out on this.  Please be aware that there are plenty more where this came from.
历史
日期 用户 动作 参数
2022-04-11 14:57:41admin修改github: 61350
2021-10-21 10:04:21iritkatriel修改resolution: duplicate -> wont fix
2021-10-20 12:57:34iritkatriel修改状态: open -> closed
后续: MinGW is unsupported - close all open issues and list them here.
resolution: duplicate
stage: resolved
2019-04-26 20:22:33BreamoreBoy修改抄送: - BreamoreBoy
2014-08-03 06:09:56rpetrov修改文件: + 0001-MINGW-issue17148-nt-thread-model-detection.patch
2014-07-17 21:48:47BreamoreBoy修改抄送: + tim.golden, BreamoreBoy, loewis, zach.ware, steve.dower

消息: + msg223376
versions: + Python 3.5, - Python 3.4
2013-02-06 22:36:10rpetrov创建