summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <antoine@python.org>2023-09-26 11:57:25 (GMT)
committerGitHub <noreply@github.com>2023-09-26 11:57:25 (GMT)
commit0eb98837b60bc58e57ad3e2b35c6b0e9ab634678 (patch)
tree215ecf809bc7a23493ffd1419db302515c05d377 /Misc
parent2897142d2ec0930a8991af964c798b68fb6dcadd (diff)
downloadcpython-0eb98837b60bc58e57ad3e2b35c6b0e9ab634678.zip
cpython-0eb98837b60bc58e57ad3e2b35c6b0e9ab634678.tar.gz
cpython-0eb98837b60bc58e57ad3e2b35c6b0e9ab634678.tar.bz2
gh-109593: Fix reentrancy issue in multiprocessing resource_tracker (#109629)
--------- Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2023-09-22-20-16-44.gh-issue-109593.LboaNM.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-09-22-20-16-44.gh-issue-109593.LboaNM.rst b/Misc/NEWS.d/next/Library/2023-09-22-20-16-44.gh-issue-109593.LboaNM.rst
new file mode 100644
index 0000000..292aea0
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-09-22-20-16-44.gh-issue-109593.LboaNM.rst
@@ -0,0 +1 @@
+Avoid deadlocking on a reentrant call to the multiprocessing resource tracker. Such a reentrant call, though unlikely, can happen if a GC pass invokes the finalizer for a multiprocessing object such as SemLock.