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); }