summaryrefslogtreecommitdiffstats
path: root/mem/memory.c
diff options
context:
space:
mode:
Diffstat (limited to 'mem/memory.c')
-rw-r--r--mem/memory.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/mem/memory.c b/mem/memory.c
new file mode 100644
index 0000000..26bbbd8
--- /dev/null
+++ b/mem/memory.c
@@ -0,0 +1,10 @@
+#include "memory.h"
+#include "zone.h"
+
+void
+mem_setup(void)
+{
+ mem_zone_setup_standard();
+ mem_paging_setup();
+ mem_slab_setup();
+}