From bb59107bd06a6a252b3743f17e55e3c17896db35 Mon Sep 17 00:00:00 2001 From: EmulatedSeasons <89668582+EmulatedSeasons@users.noreply.github.com> Date: Sun, 7 Jan 2024 03:19:28 -0500 Subject: moved kernel libc stuff to libs/libck/ --- libs/libck/abort.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 libs/libck/abort.c (limited to 'libs/libck/abort.c') diff --git a/libs/libck/abort.c b/libs/libck/abort.c new file mode 100644 index 0000000..83873e8 --- /dev/null +++ b/libs/libck/abort.c @@ -0,0 +1,11 @@ +#include +#include + +__attribute__((__noreturn__)) +void abort(void) { + // TODO: Add proper kernel panic. + printf("kernel: panic: abort()\n"); + asm volatile("hlt"); + while (1) { } + __builtin_unreachable(); +} \ No newline at end of file -- cgit v1.2.3-70-g09d2