python / cpython

The Python programming language
https://www.python.org/
Other
60.06k stars 29.09k forks source link

gh-118332: Fix deadlock involving stop the world #118412

Closed colesbury closed 2 weeks ago

colesbury commented 3 weeks ago

Avoid detaching thread state when stopping the world. When re-attaching the thread state, the thread would attempt to resume the top-most critical section, which might now be held by a thread paused for our stop-the-world request, leading to deadlock.