mirror of https://github.com/python/cpython.git
[3.9] gh-112275: Fix HEAD_LOCK deadlock in child process after fork (GH-112336) (#123688)
HEAD_LOCK is called from _PyEval_ReInitThreads->_PyThreadState_DeleteExcept before _PyRuntimeState_ReInitThreads reinit runtime->interpreters.mutex which might be locked before fork.
(cherry picked from commit 522799a05e
)
Co-authored-by: ChuBoning <102216855+ChuBoning@users.noreply.github.com>
This commit is contained in:
parent
9290419492
commit
0152431f17
|
@ -0,0 +1,3 @@
|
|||
A deadlock involving ``pystate.c``'s ``HEAD_LOCK`` in ``posixmodule.c``
|
||||
at fork is now fixed. Patch by ChuBoning based on previous Python 3.12
|
||||
fix by Victor Stinner.
|
|
@ -589,10 +589,10 @@ PyOS_AfterFork_Child(void)
|
|||
{
|
||||
_PyRuntimeState *runtime = &_PyRuntime;
|
||||
_PyGILState_Reinit(runtime);
|
||||
_PyRuntimeState_ReInitThreads(runtime);
|
||||
_PyEval_ReInitThreads(runtime);
|
||||
_PyImport_ReInitLock();
|
||||
_PySignal_AfterFork();
|
||||
_PyRuntimeState_ReInitThreads(runtime);
|
||||
_PyInterpreterState_DeleteExceptMain(runtime);
|
||||
|
||||
run_at_forkers(_PyInterpreterState_GET()->after_forkers_child, 0);
|
||||
|
|
Loading…
Reference in New Issue