kernel/svc: Amend naming for TotalMemoryUsage in svcGetInfo()

Disambiguates and makes the name a little more consistent with
TotalPhysicalMemoryUsed.
This commit is contained in:
Lioncash
2019-06-09 18:12:02 -04:00
parent 81b1102090
commit c1a8f684df
3 changed files with 6 additions and 6 deletions

View File

@ -758,7 +758,7 @@ VMManager::CheckResults VMManager::CheckRangeState(VAddr address, u64 size, Memo
std::make_tuple(initial_state, initial_permissions, initial_attributes & ~ignore_mask));
}
u64 VMManager::GetTotalMemoryUsage() const {
u64 VMManager::GetTotalPhysicalMemoryAvailable() const {
LOG_WARNING(Kernel, "(STUBBED) called");
return 0xF8000000;
}