aboutsummaryrefslogtreecommitdiff
path: root/sys/include/vm/vm.h
diff options
context:
space:
mode:
authorsigsegv7 <ian@vegaa.systems>2023-10-11 16:39:05 -0400
committersigsegv7 <ian@vegaa.systems>2023-10-11 16:40:42 -0400
commit1c4c7f88056f50987a5a4d40016d6e32dc5a0205 (patch)
treeeeaa2c72f23b7320126021cea142638c8fee4132 /sys/include/vm/vm.h
parent9e5557130dcf2e4f312e09cbcd3c5a830707e421 (diff)
kernel: vm: Add PMAP abstraction
Signed-off-by: sigsegv7 <ian@vegaa.systems>
Diffstat (limited to 'sys/include/vm/vm.h')
-rw-r--r--sys/include/vm/vm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/include/vm/vm.h b/sys/include/vm/vm.h
index baf7677..e238cd0 100644
--- a/sys/include/vm/vm.h
+++ b/sys/include/vm/vm.h
@@ -34,6 +34,7 @@
#include <sys/limine.h>
#include <sys/cdefs.h>
#include <vm/vm_page.h>
+#include <vm/pmap.h>
extern volatile struct limine_hhdm_request g_hhdm_request;
@@ -55,6 +56,5 @@ vm_get_page_size(void)
}
void vm_init(void);
-struct vas vm_new_vas(void);
#endif /* !_VM_H_ */