gdb: Implement QRcmd (monitor) commands

monitor backtrace (mo bt)
monitor registers (mo reg)
monitor get info
This commit is contained in:
Coxxs 2025-06-23 06:18:34 +08:00
parent 6b50663e99
commit 8ab9d71931
4 changed files with 144 additions and 4 deletions

View file

@ -1532,6 +1532,9 @@ namespace Ryujinx.HLE.HOS.Kernel.Threading
{
Logger.Warning?.Print(LogClass.Kernel, "Failed to get thread name.");
return "";
} catch (Exception e) {
Logger.Error?.Print(LogClass.Kernel, $"Error getting thread name: {e.Message}");
return "";
}
}
}