gdb: Add notice when application is suspended on start

This commit is contained in:
Coxxs 2025-06-21 01:05:43 +08:00
parent 737afbfa2f
commit d81dca0dcc

View file

@ -689,6 +689,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Process
{ {
mainThread.Suspend(ThreadSchedState.ThreadPauseFlag); mainThread.Suspend(ThreadSchedState.ThreadPauseFlag);
debugState = (int)DebugState.Stopped; debugState = (int)DebugState.Stopped;
Logger.Notice.Print(LogClass.Kernel, $"Application is suspended on start for debugging.");
} }
result = mainThread.Start(); result = mainThread.Start();