diff options
Diffstat (limited to 'common/panic.c')
| -rw-r--r-- | common/panic.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/common/panic.c b/common/panic.c deleted file mode 100644 index 03c0de8..0000000 --- a/common/panic.c +++ /dev/null @@ -1,25 +0,0 @@ -/* SPDX-License-Identifier: copyleft-next-0.3.1 */ -/* Copyright 2023, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ - -/** - * @file panic.c - * Kernel panic handler implementation. - */ - -#include <kmi/power.h> -#include <kmi/debug.h> - -void kernel_panic(void *pc, void *addr, long cause) -{ - /* could be useful to print out register values as well? */ - error("kernel paniced at pc: %p with address %p and cause %lx\n", - pc, addr, cause); - - info("attempting to reboot\n"); - - poweroff(COLD_REBOOT); - - /* spin if poweroff failed for some reason */ - error("reboot failed, spinning in place\n"); - while (1); -} |
