aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/mem_map.h
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner <yuriks@yuriks.net>2015-05-29 18:00:17 -0700
committerGravatar Yuri Kunde Schlesner <yuriks@yuriks.net>2015-05-29 18:00:17 -0700
commit8a04c65e20ba1f5c472c026b7a558e1d54324306 (patch)
treec11c0c6a472184f25479b0679748ee71653a2985 /src/core/mem_map.h
parenta489a846563fc64f236c7ede69ce0eb34af3521a (diff)
parent88365a23e76fe3a4a64c9dc65aa8554e25a20af0 (diff)
Merge pull request #810 from yuriks/memmap
Kernel: Add VMManager to manage process address spaces
Diffstat (limited to 'src/core/mem_map.h')
-rw-r--r--src/core/mem_map.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/core/mem_map.h b/src/core/mem_map.h
index 945815cd..ba50914a 100644
--- a/src/core/mem_map.h
+++ b/src/core/mem_map.h
@@ -8,14 +8,6 @@
namespace Memory {
-extern u8* g_exefs_code; ///< ExeFS:/.code is loaded here
-extern u8* g_heap; ///< Application heap (main memory)
-extern u8* g_shared_mem; ///< Shared memory
-extern u8* g_heap_linear; ///< Linear heap (main memory)
-extern u8* g_vram; ///< Video memory (VRAM)
-extern u8* g_dsp_mem; ///< DSP memory
-extern u8* g_tls_mem; ///< TLS memory
-
void Init();
void Shutdown();