summaryrefslogtreecommitdiff
path: root/stage3/heap.h
diff options
context:
space:
mode:
authorLizzy Fleckenstein <lizzy@vlhl.dev>2024-04-11 18:46:48 +0200
committerLizzy Fleckenstein <lizzy@vlhl.dev>2024-04-11 18:46:48 +0200
commit1bbc9fa0eea6e5daa559535142cb4e62e4bc657e (patch)
tree47db6fadfb26be3b36041d622b0a8179ca4b4f86 /stage3/heap.h
parentd9b8af151fb92fa89042dfdeaa60c854a3e8af31 (diff)
downloadcuddles-1bbc9fa0eea6e5daa559535142cb4e62e4bc657e.tar.xz
use huge pages
Diffstat (limited to 'stage3/heap.h')
-rw-r--r--stage3/heap.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/stage3/heap.h b/stage3/heap.h
index 10fe261..0b7057b 100644
--- a/stage3/heap.h
+++ b/stage3/heap.h
@@ -2,12 +2,9 @@
#define HEAP_H
#include "def.h"
-#include "paging.h"
void heap_init();
-
void heap_add(void *ptr, usize size);
-void heap_add_region(MemRegion *region);
void *try_kmalloc(usize size);
void *kmalloc(usize siz);