mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-10 14:11:43 +00:00
kern: correct TotalUserPhysicalMemorySize (closes #1710)
This commit is contained in:
parent
9d5e652fbd
commit
767e702a70
1 changed files with 1 additions and 1 deletions
|
@ -893,7 +893,7 @@ namespace ams::kern {
|
||||||
size_t KProcess::GetTotalUserPhysicalMemorySize() const {
|
size_t KProcess::GetTotalUserPhysicalMemorySize() const {
|
||||||
/* Get the amount of free and used size. */
|
/* Get the amount of free and used size. */
|
||||||
const size_t free_size = m_resource_limit->GetFreeValue(ams::svc::LimitableResource_PhysicalMemoryMax);
|
const size_t free_size = m_resource_limit->GetFreeValue(ams::svc::LimitableResource_PhysicalMemoryMax);
|
||||||
const size_t used_size = this->GetUsedNonSystemUserPhysicalMemorySize();
|
const size_t used_size = this->GetUsedUserPhysicalMemorySize();
|
||||||
const size_t max_size = m_max_process_memory;
|
const size_t max_size = m_max_process_memory;
|
||||||
|
|
||||||
if (used_size + free_size > max_size) {
|
if (used_size + free_size > max_size) {
|
||||||
|
|
Loading…
Reference in a new issue