aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Kernel/SvcHandler.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-05-13 00:22:42 -0300
committergdkchan <gab.dark.100@gmail.com>2018-05-13 00:22:42 -0300
commit4546d1b9be1052bbf82858d97795b33355bf64da (patch)
treea88286d145d8da522a81b3a265c538e7795b7f8d /Ryujinx.Core/OsHle/Kernel/SvcHandler.cs
parent3603497a137d14f2d65c5450133f2486a9f9620c (diff)
Initial work to support changing thread core on the scheduler, also some cond var priority fixes
Diffstat (limited to 'Ryujinx.Core/OsHle/Kernel/SvcHandler.cs')
-rw-r--r--Ryujinx.Core/OsHle/Kernel/SvcHandler.cs4
1 files changed, 0 insertions, 4 deletions
diff --git a/Ryujinx.Core/OsHle/Kernel/SvcHandler.cs b/Ryujinx.Core/OsHle/Kernel/SvcHandler.cs
index be394c4b..bbbd0fb0 100644
--- a/Ryujinx.Core/OsHle/Kernel/SvcHandler.cs
+++ b/Ryujinx.Core/OsHle/Kernel/SvcHandler.cs
@@ -22,8 +22,6 @@ namespace Ryujinx.Core.OsHle.Kernel
private ConcurrentDictionary<KThread, AutoResetEvent> SyncWaits;
- private object CondVarLock;
-
private HashSet<(HSharedMem, long)> MappedSharedMems;
private ulong CurrentHeapSize;
@@ -80,8 +78,6 @@ namespace Ryujinx.Core.OsHle.Kernel
SyncWaits = new ConcurrentDictionary<KThread, AutoResetEvent>();
- CondVarLock = new object();
-
MappedSharedMems = new HashSet<(HSharedMem, long)>();
}