diff options
author | Ian Moffett <ian@osmora.org> | 2024-06-05 23:27:21 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-06-05 23:27:21 -0400 |
commit | e67e3a62edf7d1948d721e0fc62917906798add1 (patch) | |
tree | ecee899d0cac034b370959bd6434490176732adb /sys/include/vm/vm.h | |
parent | 694b5c9b8f1964fc6bf4352637055b85db135368 (diff) |
kernel: vm: Add port of TLSF
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include/vm/vm.h')
-rw-r--r-- | sys/include/vm/vm.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/include/vm/vm.h b/sys/include/vm/vm.h index a2caa8c..bf49e67 100644 --- a/sys/include/vm/vm.h +++ b/sys/include/vm/vm.h @@ -32,6 +32,8 @@ #include <sys/types.h> #include <sys/limine.h> +#include <sys/spinlock.h> +#include <vm/tlsf.h> extern volatile struct limine_hhdm_request g_hhdm_request; @@ -41,6 +43,14 @@ extern volatile struct limine_hhdm_request g_hhdm_request; #define DEFAULT_PAGESIZE 4096 +struct vm_ctx { + size_t dynalloc_pool_sz; + uintptr_t dynalloc_pool_pa; + struct spinlock dynalloc_lock; + tlsf_t tlsf_ctx; +}; + +struct vm_ctx *vm_get_ctx(void); void vm_init(void); #endif |