mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-06 13:58:40 +00:00
only retry findthread given missing debug info or RIP if ctrl thread is stopped
This commit is contained in:
+2
-2
@@ -2154,8 +2154,8 @@ df_window_update_and_render(Arena *arena, OS_EventList *events, DF_Window *ws, D
|
|||||||
df_cmd_list_push(arena, cmds, ¶ms, df_cmd_spec_from_core_cmd_kind(DF_CoreCmdKind_FindCodeLocation));
|
df_cmd_list_push(arena, cmds, ¶ms, df_cmd_spec_from_core_cmd_kind(DF_CoreCmdKind_FindCodeLocation));
|
||||||
}
|
}
|
||||||
|
|
||||||
// rjf: retry on pending debug info
|
// rjf: retry on stopped, pending debug info
|
||||||
if(dbg_info_pending || missing_rip)
|
if(!df_ctrl_targets_running() && (dbg_info_pending || missing_rip))
|
||||||
{
|
{
|
||||||
df_push_cmd__root(¶ms, df_cmd_spec_from_core_cmd_kind(DF_CoreCmdKind_FindThread));
|
df_push_cmd__root(¶ms, df_cmd_spec_from_core_cmd_kind(DF_CoreCmdKind_FindThread));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user