From b40d31b6f6e56fdf3f3c4f4b4be36681fb829c6b Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Wed, 13 Mar 2024 21:24:43 -0400 Subject: kernel/amd64: trap: Update panic message We have a scheduler now, this old message does not make sense. So it is replaced. Signed-off-by: Ian Moffett --- sys/arch/amd64/amd64/trap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/arch/amd64/amd64/trap.c b/sys/arch/amd64/amd64/trap.c index c1cff56..f1e58f1 100644 --- a/sys/arch/amd64/amd64/trap.c +++ b/sys/arch/amd64/amd64/trap.c @@ -121,5 +121,5 @@ trap_handler(struct trapframe *tf) } regdump(tf); - panic("Caught pre-sched exception\n"); + panic("Halted\n"); } -- cgit v1.2.3