Major refactor of codebase

This commit is contained in:
ssimnb 2026-02-14 18:11:37 +01:00
parent dbc6dc0d7c
commit f478f8d38b
125 changed files with 195 additions and 29519 deletions

9
include/mm/kmalloc.h Normal file
View file

@ -0,0 +1,9 @@
#include <error.h>
#include <stddef.h>
#include <stdint.h>
void _kmalloc_init(void);
void *kmalloc(size_t size);
void *kzalloc(size_t size);
kstatus kfree(void *addr);