docs & fix for -q

This commit is contained in:
Ryan Fleury
2024-10-10 13:04:16 -07:00
parent f6502f476b
commit 2bf5c9c9a4
2 changed files with 6 additions and 0 deletions
+4
View File
@@ -15841,6 +15841,10 @@ rd_frame(void)
{
rd_cmd(RD_CmdKind_Exit);
}
else if(evt->code != 0)
{
rd_state->quit_after_success = 0;
}
}break;
case D_EventKind_Stop:
{
+2
View File
@@ -1117,6 +1117,8 @@ entry_point(CmdLine *cmd_line)
"This will step into all targets after the debugger initially starts.\n\n"
"--auto_run\n"
"This will run all targets after the debugger initially starts.\n\n"
"--quit_after_success (or -q)\n"
"This will close the debugger automatically after all processes exit, if they all exited successfully (with code 0), and ran with no interruptions.\n\n"
"--ipc <command>\n"
"This will launch the debugger in the non-graphical IPC mode, which is used to communicate with another running instance of the debugger. The debugger instance will launch, send the specified command, then immediately terminate. This may be used by editors or other programs to control the debugger.\n\n"));
}break;