We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba09801 commit 8288a7eCopy full SHA for 8288a7e
Modules/posixmodule.c
@@ -678,7 +678,7 @@ PyOS_AfterFork_Parent(void)
678
}
679
680
static void
681
-PyRemoteDebugCall_Reset(PyThreadState *tstate)
+reset_remotedebug_data(PyThreadState *tstate)
682
{
683
tstate->remote_debugger_support.debugger_pending_call = 0;
684
memset(tstate->remote_debugger_support.debugger_script_path, 0, MAX_SCRIPT_PATH_SIZE);
@@ -718,7 +718,7 @@ PyOS_AfterFork_Child(void)
718
goto fatal_error;
719
720
721
- PyRemoteDebugCall_Reset(tstate);
+ reset_remotedebug_data(tstate);
722
723
// Remove the dead thread states. We "start the world" once we are the only
724
// thread state left to undo the stop the world call in `PyOS_BeforeFork`.
0 commit comments