diff options
author | Lioncash <mathew1800@gmail.com> | 2019-03-29 03:59:17 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-03-29 03:59:20 +0100 |
commit | 3a846aa80f5d533a5061fcbef2736aaef8c38a66 (patch) | |
tree | a3dd29dfc5f35a4fed9d9c9855af4dbab902774f /src/core/hle/kernel/svc.cpp | |
parent | kernel/process: Store the total size of the code memory loaded (diff) | |
download | yuzu-3a846aa80f5d533a5061fcbef2736aaef8c38a66.tar yuzu-3a846aa80f5d533a5061fcbef2736aaef8c38a66.tar.gz yuzu-3a846aa80f5d533a5061fcbef2736aaef8c38a66.tar.bz2 yuzu-3a846aa80f5d533a5061fcbef2736aaef8c38a66.tar.lz yuzu-3a846aa80f5d533a5061fcbef2736aaef8c38a66.tar.xz yuzu-3a846aa80f5d533a5061fcbef2736aaef8c38a66.tar.zst yuzu-3a846aa80f5d533a5061fcbef2736aaef8c38a66.zip |
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-rw-r--r-- | src/core/hle/kernel/svc.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 09d1eadb6..17bfe10ff 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -709,7 +709,7 @@ static ResultCode GetInfo(u64* result, u64 info_id, u64 handle, u64 info_sub_id) HeapRegionBaseAddr = 4, HeapRegionSize = 5, TotalMemoryUsage = 6, - TotalHeapUsage = 7, + TotalPhysicalMemoryUsed = 7, IsCurrentProcessBeingDebugged = 8, RegisterResourceLimit = 9, IdleTickCount = 10, @@ -745,7 +745,7 @@ static ResultCode GetInfo(u64* result, u64 info_id, u64 handle, u64 info_sub_id) case GetInfoType::NewMapRegionBaseAddr: case GetInfoType::NewMapRegionSize: case GetInfoType::TotalMemoryUsage: - case GetInfoType::TotalHeapUsage: + case GetInfoType::TotalPhysicalMemoryUsed: case GetInfoType::IsVirtualAddressMemoryEnabled: case GetInfoType::PersonalMmHeapUsage: case GetInfoType::TitleId: @@ -805,8 +805,8 @@ static ResultCode GetInfo(u64* result, u64 info_id, u64 handle, u64 info_sub_id) *result = process->VMManager().GetTotalMemoryUsage(); return RESULT_SUCCESS; - case GetInfoType::TotalHeapUsage: - *result = process->VMManager().GetCurrentHeapSize(); + case GetInfoType::TotalPhysicalMemoryUsed: + *result = process->GetTotalPhysicalMemoryUsed(); return RESULT_SUCCESS; case GetInfoType::IsVirtualAddressMemoryEnabled: |