From 0039bb639493b2d1e2764cae380311ba8e87704b Mon Sep 17 00:00:00 2001 From: gdkchan Date: Tue, 18 Dec 2018 03:33:36 -0200 Subject: Refactor SVC handler (#540) * Refactor SVC handler * Get rid of KernelErr * Split kernel code files into multiple folders --- Ryujinx.HLE/HOS/Kernel/Common/KAutoObject.cs | 42 ++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 Ryujinx.HLE/HOS/Kernel/Common/KAutoObject.cs (limited to 'Ryujinx.HLE/HOS/Kernel/Common/KAutoObject.cs') diff --git a/Ryujinx.HLE/HOS/Kernel/Common/KAutoObject.cs b/Ryujinx.HLE/HOS/Kernel/Common/KAutoObject.cs new file mode 100644 index 00000000..ddb0c71f --- /dev/null +++ b/Ryujinx.HLE/HOS/Kernel/Common/KAutoObject.cs @@ -0,0 +1,42 @@ +namespace Ryujinx.HLE.HOS.Kernel.Common +{ + 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 -- cgit v1.2.3