summaryrefslogtreecommitdiff
path: root/src/core/memory.h
diff options
context:
space:
mode:
authorZephyron <zephyron@citron-emu.org>2025-03-06 06:43:37 +0000
committerZephyron <zephyron@citron-emu.org>2025-03-06 06:43:37 +0000
commit9a65205dba64302ea41aaa8e8d962193c56969b4 (patch)
tree99266b86fcf122aff15217b0fedfd7cecad9b400 /src/core/memory.h
parentaf4f08be339a2ba093578e7083638a95d847fb9d (diff)
revert ee3d858935600e23a7914620b21f45082cccf8bd
revert Follow Up Of the previous commit with the update of TLB update
Diffstat (limited to 'src/core/memory.h')
-rw-r--r--src/core/memory.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/core/memory.h b/src/core/memory.h
index eeeee6d65..3f315ff7a 100644
--- a/src/core/memory.h
+++ b/src/core/memory.h
@@ -492,21 +492,6 @@ public:
bool InvalidateSeparateHeap(void* fault_address);
- /**
- * Remaps a region of the emulated process address space.
- *
- * @param guest_addr The address to begin remapping at.
- * @param size The amount of bytes to remap.
- *
- * @returns True if remapping is successful, false otherwise.
- */
- bool Remap(u64 guest_addr, u32 size);
-
- /**
- * Reclaims memory from pages that are no longer used.
- */
- void ReclaimUnusedMemory();
-
private:
Core::System& system;