summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/vm_manager.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-03-15 03:09:22 +0100
committerbunnei <bunneidev@gmail.com>2018-03-16 23:32:23 +0100
commit34a29ad051c271fef8328d9925fa7d0031ce2534 (patch)
tree133f4f79bdd3abfa7d122303f70fb6ed45457704 /src/core/hle/kernel/vm_manager.h
parentkernel: Move stack region outside of application heap. (diff)
downloadyuzu-34a29ad051c271fef8328d9925fa7d0031ce2534.tar
yuzu-34a29ad051c271fef8328d9925fa7d0031ce2534.tar.gz
yuzu-34a29ad051c271fef8328d9925fa7d0031ce2534.tar.bz2
yuzu-34a29ad051c271fef8328d9925fa7d0031ce2534.tar.lz
yuzu-34a29ad051c271fef8328d9925fa7d0031ce2534.tar.xz
yuzu-34a29ad051c271fef8328d9925fa7d0031ce2534.tar.zst
yuzu-34a29ad051c271fef8328d9925fa7d0031ce2534.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/vm_manager.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/hle/kernel/vm_manager.h b/src/core/hle/kernel/vm_manager.h
index f5493649b..4d66146f6 100644
--- a/src/core/hle/kernel/vm_manager.h
+++ b/src/core/hle/kernel/vm_manager.h
@@ -201,15 +201,6 @@ public:
/// Gets the total address space address size, used by svcGetInfo
u64 GetAddressSpaceSize();
- /// Gets the map region base address, used by svcGetInfo
- VAddr GetMapRegionBaseAddr();
-
- /// Gets the base address for a new memory region, used by svcGetInfo
- VAddr GetNewMapRegionBaseAddr();
-
- /// Gets the size for a new memory region, used by svcGetInfo
- u64 GetNewMapRegionSize();
-
/// Each VMManager has its own page table, which is set as the main one when the owning process
/// is scheduled.
Memory::PageTable page_table;