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

@@ -7,6 +7,7 @@ $(eval $(call add_lib,libarena))
$(eval $(call add_lib,libioutil))
$(eval $(call add_lib,libterminal))
$(eval $(call add_lib,libfat))
$(eval $(call add_lib,libmalloc))
$(eval $(call add_include,libkb))
cflags += -DPRINTF_INCLUDE_CONFIG_H=1

View File

@@ -7,8 +7,8 @@
#include "strbuf.h"
#include <arena.h>
#include <kb.h>
#include <liballoc.h>
#include <list.h>
#include <malloc.h>
#include <printf.h>
#include <stdbool.h>
#include <stddef.h>

View File

@@ -1,6 +1,6 @@
#include "context.h"
#include "strbuf.h"
#include <liballoc.h>
#include <malloc.h>
#include <printf.h>
#include <stdarg.h>
#include <stddef.h>

View File

@@ -7,8 +7,8 @@
#include <arena.h>
#include <filewriter.h>
#include <kb.h>
#include <liballoc.h>
#include <list.h>
#include <malloc.h>
#include <path.h>
#include <printf.h>
#include <stdbool.h>

View File

@@ -1,7 +1,7 @@
#include "gapbuffer.h"
#include "arena_alloc.h"
#include <arena.h>
#include <liballoc.h>
#include <malloc.h>
#include <stddef.h>
#include <string.h>

View File

@@ -10,8 +10,8 @@
#include <filewriter.h>
#include <fs_types.h>
#include <kb.h>
#include <liballoc.h>
#include <libfat.h>
#include <malloc.h>
#include <path.h>
#include <printf.h>
#include <process.h>

View File

@@ -1,6 +1,6 @@
#include "mprintf.h"
#include "self.h"
#include <liballoc.h>
#include <malloc.h>
#include <printf.h>
#include <stdarg.h>
#include <string.h>