summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/memory.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2015-08-06 06:51:46 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-08-16 06:03:49 +0200
commit840b85690b5de1e7ca89763ff6ca58cbe9b6d68f (patch)
treea19e41f7c9a273ce89cbd072d93a64f2df087987 /src/core/hle/kernel/memory.h
parentAPT: Adjust shared font hack so it works with the new linear heap code (diff)
downloadyuzu-840b85690b5de1e7ca89763ff6ca58cbe9b6d68f.tar
yuzu-840b85690b5de1e7ca89763ff6ca58cbe9b6d68f.tar.gz
yuzu-840b85690b5de1e7ca89763ff6ca58cbe9b6d68f.tar.bz2
yuzu-840b85690b5de1e7ca89763ff6ca58cbe9b6d68f.tar.lz
yuzu-840b85690b5de1e7ca89763ff6ca58cbe9b6d68f.tar.xz
yuzu-840b85690b5de1e7ca89763ff6ca58cbe9b6d68f.tar.zst
yuzu-840b85690b5de1e7ca89763ff6ca58cbe9b6d68f.zip
Diffstat (limited to 'src/core/hle/kernel/memory.h')
-rw-r--r--src/core/hle/kernel/memory.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/core/hle/kernel/memory.h b/src/core/hle/kernel/memory.h
index 2e2cae17d..36690b091 100644
--- a/src/core/hle/kernel/memory.h
+++ b/src/core/hle/kernel/memory.h
@@ -31,22 +31,5 @@ namespace Memory {
void Init();
void InitLegacyAddressSpace(Kernel::VMManager& address_space);
-void Shutdown();
-
-/**
- * Maps a block of memory on the heap
- * @param size Size of block in bytes
- * @param operation Memory map operation type
- * @param permissions Memory allocation permissions
- */
-u32 MapBlock_Heap(u32 size, u32 operation, u32 permissions);
-
-/**
- * Maps a block of memory on the GSP heap
- * @param size Size of block in bytes
- * @param operation Memory map operation type
- * @param permissions Control memory permissions
- */
-u32 MapBlock_HeapLinear(u32 size, u32 operation, u32 permissions);
} // namespace