mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-22 10:55:14 -04:00
pm: Update for 7.0.0
This commit is contained in:
parent
a3adb70a04
commit
4e99eaa590
3 changed files with 17 additions and 1 deletions
|
@ -104,3 +104,10 @@ Result ShellService::GetApplicationProcessId(Out<u64> pid) {
|
|||
Result ShellService::BoostSystemMemoryResourceLimit(u64 sysmem_size) {
|
||||
return ResourceLimitUtils::BoostSystemMemoryResourceLimit(sysmem_size);
|
||||
}
|
||||
|
||||
Result ShellService::BoostSystemThreadsResourceLimit() {
|
||||
/* Starting in 7.0.0, Nintendo reduces the number of system threads from 0x260 to 0x60, */
|
||||
/* Until this command is called to double that amount to 0xC0. */
|
||||
/* We will simply not reduce the number of system threads available for no reason. */
|
||||
return 0x0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue