[issue30765] PyThread_acquire_lock can block even when asked not ot

2017-06-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: Travis-CI and the 3.x buildbots seem fine. -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker ___

[issue30765] PyThread_acquire_lock can block even when asked not ot

2017-06-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: New changeset 828488393ca79f2ceb0acc2d7c30fb68baad85f8 by Antoine Pitrou in branch '2.7': [2.7] bpo-30765: Avoid blocking when PyThread_acquire_lock() is asked not to (GH-2403) (#2420) https://github.com/python/cpython/commit/828488393ca79f2ceb0acc2d7c30fb68ba

[issue30765] PyThread_acquire_lock can block even when asked not ot

2017-06-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: New changeset 85b34edd8b575b918490afbcb0db6f791874dbdd by Antoine Pitrou in branch '3.5': [3.5] bpo-30765: Avoid blocking when PyThread_acquire_lock() is asked not to (GH-2403) (#2419) https://github.com/python/cpython/commit/85b34edd8b575b918490afbcb0db6f7918

[issue30765] PyThread_acquire_lock can block even when asked not ot

2017-06-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: New changeset 55ab604e3fdb91baabe98d1c407b5910eeb31cef by Antoine Pitrou in branch '3.6': [3.6] bpo-30765: Avoid blocking when PyThread_acquire_lock() is asked not to (GH-2403) (#2418) https://github.com/python/cpython/commit/55ab604e3fdb91baabe98d1c407b5910ee

[issue30765] PyThread_acquire_lock can block even when asked not ot

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

[issue30765] PyThread_acquire_lock can block even when asked not ot

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

[issue30765] PyThread_acquire_lock can block even when asked not ot

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

[issue30765] PyThread_acquire_lock can block even when asked not ot

2017-06-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: New changeset f84ac420c2af98339678744953869cad3c253281 by Antoine Pitrou in branch 'master': bpo-30765: Avoid blocking when PyThread_acquire_lock() is asked not to (#2403) https://github.com/python/cpython/commit/f84ac420c2af98339678744953869cad3c253281 -

[issue30765] PyThread_acquire_lock can block even when asked not ot

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

[issue30765] PyThread_acquire_lock can block even when asked not ot

2017-06-26 Thread Antoine Pitrou
New submission from Antoine Pitrou: Discovered in issue30703. When POSIX semaphores are not used for Python locks, pthread_mutex_lock() is called for acquiring a lock even when asked not to block. This can be disastrous when called from a signal handler. -- components: Interpreter Co