Skip to content

Commit 8288a7e

Browse files
committed
Update image
Signed-off-by: Manjusaka <[email protected]>
1 parent ba09801 commit 8288a7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/posixmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ PyOS_AfterFork_Parent(void)
678678
}
679679

680680
static void
681-
PyRemoteDebugCall_Reset(PyThreadState *tstate)
681+
reset_remotedebug_data(PyThreadState *tstate)
682682
{
683683
tstate->remote_debugger_support.debugger_pending_call = 0;
684684
memset(tstate->remote_debugger_support.debugger_script_path, 0, MAX_SCRIPT_PATH_SIZE);
@@ -718,7 +718,7 @@ PyOS_AfterFork_Child(void)
718718
goto fatal_error;
719719
}
720720

721-
PyRemoteDebugCall_Reset(tstate);
721+
reset_remotedebug_data(tstate);
722722

723723
// Remove the dead thread states. We "start the world" once we are the only
724724
// thread state left to undo the stop the world call in `PyOS_BeforeFork`.

0 commit comments

Comments
 (0)