aboutsummaryrefslogtreecommitdiff
path: root/kernel/include/frame.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/include/frame.h')
-rw-r--r--kernel/include/frame.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/kernel/include/frame.h b/kernel/include/frame.h
deleted file mode 100644
index 9ffafb3..0000000
--- a/kernel/include/frame.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#pragma once
-
-#include <sys.h>
-
-// frame.h : physical memory allocator
-
-void frame_init_allocator(size_t total_ram, void** kernel_data_end);
-
-uint32_t frame_alloc(size_t n); // allocate n consecutive frames (returns 0 on failure)
-void frame_free(uint32_t base, size_t n);
-
-void dbg_print_frame_stats();
-
-/* vim: set ts=4 sw=4 tw=0 noet :*/