summaryrefslogtreecommitdiff
path: root/kernel/mem.c
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.org>2024-03-28 21:30:12 -0500
committerDanny Holman <dholman@gymli.org>2024-03-28 21:30:12 -0500
commitcbe2690cd5d1b290633c466ebb4df7b64b09b037 (patch)
tree99f77ef19f303c42c028be11cbb4210245b8a583 /kernel/mem.c
parent891f1010bbdc1351bda8d2a6139094a14bdfd5e1 (diff)
arch: i386: kernel: add mostly finished PFA and paging system
Add the mostly finished physical memory allocator and expose its functions to the paging system. Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'kernel/mem.c')
-rw-r--r--kernel/mem.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/kernel/mem.c b/kernel/mem.c
deleted file mode 100644
index e977f6a..0000000
--- a/kernel/mem.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <kernel/mem.h>
-#include <kernel/paging.h>
-
-extern uintptr_t _kernel_end;
-static uintptr_t heap_start = (uintptr_t)&_kernel_end;
-static uintptr_t heap_end = (uintptr_t)&_kernel_end;
-
-void* kmalloc(size_t sz) {
- void *tmp = heap_end;
- heap_end += sz;
- return tmp;
-}
-
-void kfree(void *ptr) {
-}