mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-29 09:57:09 +02:00
[HLE/Kernel] Somewhat improved sync primitives
This commit is contained in:
parent
351d8f88dc
commit
e0c0813b5c
20 changed files with 408 additions and 443 deletions
10
Ryujinx.Core/OsHle/Kernel/KernelErr.cs
Normal file
10
Ryujinx.Core/OsHle/Kernel/KernelErr.cs
Normal file
|
@ -0,0 +1,10 @@
|
|||
namespace Ryujinx.Core.OsHle.Kernel
|
||||
{
|
||||
static class KernelErr
|
||||
{
|
||||
public const int InvalidMemRange = 110;
|
||||
public const int InvalidHandle = 114;
|
||||
public const int Timeout = 117;
|
||||
public const int InvalidInfo = 120;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue