aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Kernel/KernelErr.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-05-13 22:00:29 -0300
committergdkchan <gab.dark.100@gmail.com>2018-05-13 22:00:29 -0300
commitb2b1d7dcd7bef8b78c7cea9d81339ba664fe7578 (patch)
tree5ac5d5eaf103c4e72b4d418adab38b921fb28d11 /Ryujinx.Core/OsHle/Kernel/KernelErr.cs
parent4546d1b9be1052bbf82858d97795b33355bf64da (diff)
Better implementation of SetThreadCoreMask that allows changing the Core Mask (untested, no clue if it actually works)
Diffstat (limited to 'Ryujinx.Core/OsHle/Kernel/KernelErr.cs')
-rw-r--r--Ryujinx.Core/OsHle/Kernel/KernelErr.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/Ryujinx.Core/OsHle/Kernel/KernelErr.cs b/Ryujinx.Core/OsHle/Kernel/KernelErr.cs
index 87f9cf3b..17c0044c 100644
--- a/Ryujinx.Core/OsHle/Kernel/KernelErr.cs
+++ b/Ryujinx.Core/OsHle/Kernel/KernelErr.cs
@@ -5,7 +5,10 @@ namespace Ryujinx.Core.OsHle.Kernel
public const int InvalidAlignment = 102;
public const int InvalidAddress = 106;
public const int InvalidMemRange = 110;
+ public const int InvalidPriority = 112;
+ public const int InvalidCoreId = 113;
public const int InvalidHandle = 114;
+ public const int InvalidCoreMask = 116;
public const int Timeout = 117;
public const int Canceled = 118;
public const int CountOutOfRange = 119;