aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Kernel/KAutoObject.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Kernel/KAutoObject.cs')
-rw-r--r--Ryujinx.HLE/HOS/Kernel/KAutoObject.cs42
1 files changed, 0 insertions, 42 deletions
diff --git a/Ryujinx.HLE/HOS/Kernel/KAutoObject.cs b/Ryujinx.HLE/HOS/Kernel/KAutoObject.cs
deleted file mode 100644
index f49beaac..00000000
--- a/Ryujinx.HLE/HOS/Kernel/KAutoObject.cs
+++ /dev/null
@@ -1,42 +0,0 @@
-namespace Ryujinx.HLE.HOS.Kernel
-{
- class KAutoObject
- {
- protected Horizon System;
-
- public KAutoObject(Horizon system)
- {
- System = system;
- }
-
- public virtual KernelResult SetName(string name)
- {
- if (!System.AutoObjectNames.TryAdd(name, this))
- {
- return KernelResult.InvalidState;
- }
-
- return KernelResult.Success;
- }
-
- public static KernelResult RemoveName(Horizon system, string name)
- {
- if (!system.AutoObjectNames.TryRemove(name, out _))
- {
- return KernelResult.NotFound;
- }
-
- return KernelResult.Success;
- }
-
- public static KAutoObject FindNamedObject(Horizon system, string name)
- {
- if (system.AutoObjectNames.TryGetValue(name, out KAutoObject obj))
- {
- return obj;
- }
-
- return null;
- }
- }
-} \ No newline at end of file