Compare commits

..

1 commit

Author SHA1 Message Date
Coxxs
87221bfec8 Merge branch 'gdb-stub' into 'master'
Add GDB Stub

See merge request [ryubing/ryujinx!71](https://git.ryujinx.app/ryubing/ryujinx/-/merge_requests/71)
2025-06-24 02:54:36 -05:00

View file

@ -548,7 +548,6 @@ namespace Ryujinx.HLE.Debugger
if (!BreakpointManager.SetBreakPoint(addr, len, false))
{
ReplyError();
return;
}
ReplyOK();
return;
@ -584,7 +583,6 @@ namespace Ryujinx.HLE.Debugger
if (!BreakpointManager.ClearBreakPoint(addr, len))
{
ReplyError();
return;
}
ReplyOK();
return;
@ -695,7 +693,7 @@ namespace Ryujinx.HLE.Debugger
// If we receive "vCont;c", just continue the process.
// If we receive something like "vCont;c:2e;c:2f" (IDA Pro will send commands like this), continue these threads.
// For "vCont;s:2f;c", `DebugProcess.DebugStep()` will continue and suspend other threads if needed, so we don't do anything here.
// For "vCont;s:2f;c", we only step thread 2f, and do not continue other threads. (Is this correct?)
if (threadActionMap.Values.All(a => a.Action == VContAction.Continue))
{
DebugProcess.DebugContinue();