From 48737a4bb2372d4564f369694df7c2ca5812bf25 Mon Sep 17 00:00:00 2001 From: comex Date: Mon, 20 Jun 2022 17:39:10 -0700 Subject: Support InfoType_MesosphereCurrentProcess --- src/core/hle/kernel/svc.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 2ff6d5fa6..0aa068f1d 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -692,6 +692,9 @@ static ResultCode GetInfo(Core::System& system, u64* result, u64 info_id, Handle // 6.0.0+ TotalPhysicalMemoryAvailableWithoutSystemResource = 21, TotalPhysicalMemoryUsedWithoutSystemResource = 22, + + // Homebrew only + MesosphereCurrentProcess = 65001, }; const auto info_id_type = static_cast(info_id); @@ -914,6 +917,17 @@ static ResultCode GetInfo(Core::System& system, u64* result, u64 info_id, Handle *result = system.Kernel().CurrentScheduler()->GetIdleThread()->GetCpuTime(); return ResultSuccess; } + case GetInfoType::MesosphereCurrentProcess: { + R_UNLESS(handle == InvalidHandle, ResultInvalidHandle); + R_UNLESS(info_sub_id == 0, ResultInvalidCombination); + + KProcess* const current_process = system.Kernel().CurrentProcess(); + Handle process_handle{}; + R_TRY(current_process->GetHandleTable().Add(&process_handle, current_process)); + + *result = process_handle; + return ResultSuccess; + } default: LOG_ERROR(Kernel_SVC, "Unimplemented svcGetInfo id=0x{:016X}", info_id); return ResultInvalidEnumValue; -- cgit v1.2.3