pm: hook up the new libnx apis

This commit is contained in:
Michael Scire
2022-03-22 10:21:47 -07:00
parent 0a81889967
commit f804793fdf
4 changed files with 11 additions and 16 deletions

View File

@@ -50,14 +50,13 @@ namespace ams::pm::shell {
return ::pmshellBoostSystemMemoryResourceLimit(size);
}
Result EnableApplicationExtraThread() {
return ::pmshellEnableApplicationExtraThread();
Result BoostApplicationThreadResourceLimit() {
return ::pmshellBoostApplicationThreadResourceLimit();
}
#endif
Result EnableSystemExtraThread() {
/* TODO: return ::pmshellEnableSystemExtraThread(); */
AMS_ABORT("TODO");
Result BoostSystemThreadResourceLimit() {
return ::pmshellBoostSystemThreadResourceLimit();
}
}