summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/vm_manager.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-03-24 20:56:07 +0100
committerLioncash <mathew1800@gmail.com>2019-03-24 22:08:16 +0100
commit52980df1aa796bb1eba3e5fec921eab1df961e51 (patch)
tree14b1869e4dd7ebed81ce361c4100ad1f8a8e1887 /src/core/hle/kernel/vm_manager.h
parentkernel/vm_manager: Tidy up heap allocation code (diff)
downloadyuzu-52980df1aa796bb1eba3e5fec921eab1df961e51.tar
yuzu-52980df1aa796bb1eba3e5fec921eab1df961e51.tar.gz
yuzu-52980df1aa796bb1eba3e5fec921eab1df961e51.tar.bz2
yuzu-52980df1aa796bb1eba3e5fec921eab1df961e51.tar.lz
yuzu-52980df1aa796bb1eba3e5fec921eab1df961e51.tar.xz
yuzu-52980df1aa796bb1eba3e5fec921eab1df961e51.tar.zst
yuzu-52980df1aa796bb1eba3e5fec921eab1df961e51.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/vm_manager.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/hle/kernel/vm_manager.h b/src/core/hle/kernel/vm_manager.h
index 23edd6582..cb864ab31 100644
--- a/src/core/hle/kernel/vm_manager.h
+++ b/src/core/hle/kernel/vm_manager.h
@@ -418,9 +418,6 @@ public:
/// Gets the total memory usage, used by svcGetInfo
u64 GetTotalMemoryUsage() const;
- /// Gets the total heap usage, used by svcGetInfo
- u64 GetTotalHeapUsage() const;
-
/// Gets the address space base address
VAddr GetAddressSpaceBaseAddress() const;
@@ -639,8 +636,5 @@ private:
// The end of the currently allocated heap. This is not an inclusive
// end of the range. This is essentially 'base_address + current_size'.
VAddr heap_end = 0;
-
- // Indicates how many bytes from the current heap are currently used.
- u64 heap_used = 0;
};
} // namespace Kernel