pm: rename EnableApplicationExtraThread

This commit is contained in:
Michael Scire 2020-04-16 03:53:30 -07:00 committed by fincs
parent f86dc2ceba
commit d4c278cf00
2 changed files with 2 additions and 2 deletions

View File

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

View File

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