gdb: Support continue specific threads

This commit is contained in:
Coxxs 2025-06-24 15:45:18 +08:00
parent b932905053
commit 625ca3f934
3 changed files with 45 additions and 7 deletions

View file

@ -8,9 +8,11 @@ namespace Ryujinx.HLE.Debugger
{
void DebugStop();
void DebugContinue();
void DebugContinue(KThread thread);
bool DebugStep(KThread thread);
KThread GetThread(ulong threadUid);
DebugState GetDebugState();
bool IsThreadPaused(KThread thread);
ulong[] GetThreadUids();
public void DebugInterruptHandler(IExecutionContext ctx);
IVirtualMemoryManager CpuMemory { get; }