aboutsummaryrefslogtreecommitdiff
path: root/kernel/include/mm/physical_mm.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/include/mm/physical_mm.h')
-rw-r--r--kernel/include/mm/physical_mm.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/include/mm/physical_mm.h b/kernel/include/mm/physical_mm.h
index 8438286..d90495b 100644
--- a/kernel/include/mm/physical_mm.h
+++ b/kernel/include/mm/physical_mm.h
@@ -32,6 +32,10 @@
#define MAX_BLOCKS 1048576
void physical_mm_init(void);
+
uint32_t physical_mm_find_first_free_block(void);
+void *physical_mm_allocate_block(void);
+void physical_mm_free_block(void *physical_address);
+
#endif