From d4c278cf00503d8e884122d4bd12f1e652170cb8 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 16 Apr 2020 03:53:30 -0700 Subject: [PATCH] pm: rename EnableApplicationExtraThread --- nx/include/switch/services/pm.h | 2 +- nx/source/services/pm.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nx/include/switch/services/pm.h b/nx/include/switch/services/pm.h index 01985498..e0acff10 100644 --- a/nx/include/switch/services/pm.h +++ b/nx/include/switch/services/pm.h @@ -124,4 +124,4 @@ Result pmshellClearJitDebugOccured(u64 pid); Result pmshellNotifyBootFinished(void); Result pmshellGetApplicationProcessIdForShell(u64* pid_out); Result pmshellBoostSystemMemoryResourceLimit(u64 boost_size); -Result pmshellBoostSystemThreadResourceLimit(void); +Result pmshellEnableApplicationExtraThread(void); diff --git a/nx/source/services/pm.c b/nx/source/services/pm.c index 648b24e3..2a375876 100644 --- a/nx/source/services/pm.c +++ b/nx/source/services/pm.c @@ -162,7 +162,7 @@ Result pmshellBoostSystemMemoryResourceLimit(u64 boost_size) { return serviceDispatchIn(&g_pmshellSrv, cmd_id, boost_size); } -Result pmshellBoostSystemThreadResourceLimit(void) { +Result pmshellEnableApplicationExtraThread(void) { if (hosversionBefore(7,0,0)) return MAKERESULT(Module_Libnx, LibnxError_IncompatSysVer); return serviceDispatch(&g_pmshellSrv, 8); }