diff options
| author | 2018-11-13 11:08:59 -0500 | |
|---|---|---|
| committer | 2018-11-13 13:08:26 -0500 | |
| commit | 004277477aed5748fe1f601ddb242584a02b57d0 (patch) | |
| tree | c1228398a611047869926601d1f3e2194e785867 /src | |
| parent | kernel/process: Migrate heap-related memory management out of the process cla... (diff) | |
| download | yuzu-004277477aed5748fe1f601ddb242584a02b57d0.tar.gz yuzu-004277477aed5748fe1f601ddb242584a02b57d0.tar.xz yuzu-004277477aed5748fe1f601ddb242584a02b57d0.zip | |
vm_manager: Unstub GetTotalHeapUsage()
Now that we've moved all of the heap-related stuff to the VMManager
class, we can unstub this function, as the necessary members are visible
now.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/kernel/vm_manager.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/kernel/vm_manager.cpp b/src/core/hle/kernel/vm_manager.cpp index 861b67f57..ec7fd6150 100644 --- a/src/core/hle/kernel/vm_manager.cpp +++ b/src/core/hle/kernel/vm_manager.cpp | |||
| @@ -574,8 +574,7 @@ u64 VMManager::GetTotalMemoryUsage() const { | |||
| 574 | } | 574 | } |
| 575 | 575 | ||
| 576 | u64 VMManager::GetTotalHeapUsage() const { | 576 | u64 VMManager::GetTotalHeapUsage() const { |
| 577 | LOG_WARNING(Kernel, "(STUBBED) called"); | 577 | return heap_used; |
| 578 | return 0x0; | ||
| 579 | } | 578 | } |
| 580 | 579 | ||
| 581 | VAddr VMManager::GetAddressSpaceBaseAddress() const { | 580 | VAddr VMManager::GetAddressSpaceBaseAddress() const { |