summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-05-31 18:19:38 (GMT)
committerGitHub <noreply@github.com>2024-05-31 18:19:38 (GMT)
commita7e81fdfc175bd9cf82dfd8f1e1853cb942bf0f0 (patch)
treefa6ecd452e4f0f4ffc9aea8b0a18e62db618d094 /Misc
parent5e8396e6841e3aae8cc10117583e596ff294d7e0 (diff)
downloadcpython-a7e81fdfc175bd9cf82dfd8f1e1853cb942bf0f0.zip
cpython-a7e81fdfc175bd9cf82dfd8f1e1853cb942bf0f0.tar.gz
cpython-a7e81fdfc175bd9cf82dfd8f1e1853cb942bf0f0.tar.bz2
[3.13] gh-119369: Fix deadlock during thread exit in free-threaded build (GH-119528) (#119868)
Release the GIL before calling `_Py_qsbr_unregister`. The deadlock could occur when the GIL was enabled at runtime. The `_Py_qsbr_unregister` call might block while holding the GIL because the thread state was not active, but the GIL was still held. (cherry picked from commit 078b8c8cf2bf68f7484cc4d2e3dd74b6fab55664) Co-authored-by: Sam Gross <colesbury@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2024-05-24-21-16-52.gh-issue-119369.qBThho.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2024-05-24-21-16-52.gh-issue-119369.qBThho.rst b/Misc/NEWS.d/next/Core and Builtins/2024-05-24-21-16-52.gh-issue-119369.qBThho.rst
new file mode 100644
index 0000000..7abdd5c
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2024-05-24-21-16-52.gh-issue-119369.qBThho.rst
@@ -0,0 +1,2 @@
+Fix deadlock during thread deletion in free-threaded build, which could
+occur when the GIL was enabled at runtime.