Add stack frame to panic

This commit is contained in:
ssimnb 2026-02-01 14:55:30 +01:00
parent b337e5193b
commit cfcb806ebf
16 changed files with 169 additions and 103 deletions

View file

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