summaryrefslogtreecommitdiffstats
path: root/lib/kpanic.c
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2024-05-22 13:00:41 -0400
committerJon Santmyer <jon@jonsantmyer.com>2024-05-22 13:00:41 -0400
commitace65b453151845bc361f21f3e5b651c35f9f126 (patch)
tree262ebd29b0ca1d8584f0b6f1efa7a00d9f4f3e43 /lib/kpanic.c
parentf004c1ade8d617a82cea2fe249434cccb47a2358 (diff)
downloadjove-kernel-master.tar.gz
jove-kernel-master.tar.bz2
jove-kernel-master.zip
massive refactor for mp and organizationHEADmaster
Diffstat (limited to 'lib/kpanic.c')
-rw-r--r--lib/kpanic.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/kpanic.c b/lib/kpanic.c
deleted file mode 100644
index 97e42eb..0000000
--- a/lib/kpanic.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#include "jove.h"
-#include "io/log.h"
-
-#include <stdarg.h>
-
-__attribute__((noreturn))
-void _kpanic(const char *file, int line, const char *fmt, ...)
-{
- va_list ap;
- va_start(ap, fmt);
- klogf("!!! PANIC !!!\n%s:%i\n", file, line);
- kvlogf(fmt, ap);
- va_end(ap);
- for(;;) __asm__ volatile("hlt");
-}