[issue30766] Make CHECK_STATUS_PTHREAD signal-safe

2019-03-06 Thread Inada Naoki
Inada Naoki added the comment: May I close this issue? -- nosy: +inada.naoki ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue30766] Make CHECK_STATUS_PTHREAD signal-safe

2017-06-26 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- pull_requests: +2451 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue30766] Make CHECK_STATUS_PTHREAD signal-safe

2017-06-26 Thread Antoine Pitrou
New submission from Antoine Pitrou: Lock functions may be called from the C signal handler, so strive to make them more signal-safe (they are not unfortunately, but minimizing the number of non-signal-safe functions called there is a good thing). Discovered in issue30703. -- component