mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-12 10:37:06 +00:00
gdb: Make waiting for a process to start more forgiving (200ms per poll 10x -> 500ms)
This commit is contained in:
parent
5d68312b54
commit
35449846d9
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ namespace Ryujinx.HLE.Debugger
|
||||||
int retries = 10;
|
int retries = 10;
|
||||||
while ((DebugProcess == null || GetThreads().Length == 0) && retries-- > 0)
|
while ((DebugProcess == null || GetThreads().Length == 0) && retries-- > 0)
|
||||||
{
|
{
|
||||||
Thread.Sleep(200);
|
Thread.Sleep(500);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (DebugProcess == null || GetThreads().Length == 0)
|
if (DebugProcess == null || GetThreads().Length == 0)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue