Handle IRQs inside the kernel
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m42s

This commit is contained in:
2026-03-13 20:33:27 +01:00
parent 4760818118
commit 217179c9a0
84 changed files with 14517 additions and 1297 deletions

View File

@@ -1,6 +1,6 @@
include ../make/ufuncs.mk
$(eval $(call add_include,liballoc))
$(eval $(call add_include,libmalloc))
libname := libarena

View File

@@ -1,5 +1,5 @@
#include <arena.h>
#include <liballoc.h>
#include <malloc.h>
#include <stddef.h>
static struct arena_chunk* arena_create_chunk (size_t capacity) {