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.
This commit is contained in:
parent
b8e885c6e5
commit
004277477a
1 changed files with 1 additions and 2 deletions
|
@ -574,8 +574,7 @@ u64 VMManager::GetTotalMemoryUsage() const {
|
|||
}
|
||||
|
||||
u64 VMManager::GetTotalHeapUsage() const {
|
||||
LOG_WARNING(Kernel, "(STUBBED) called");
|
||||
return 0x0;
|
||||
return heap_used;
|
||||
}
|
||||
|
||||
VAddr VMManager::GetAddressSpaceBaseAddress() const {
|
||||
|
|
Loading…
Reference in a new issue