diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-13 21:24:43 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-13 21:24:43 -0400 |
commit | b40d31b6f6e56fdf3f3c4f4b4be36681fb829c6b (patch) | |
tree | 62a26070348eaae000938e1821e94d5ce8ccb7f7 /sys | |
parent | 73a209c0f7e350d819ce4b98374d4f2b83f7300d (diff) |
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 <ian@osmora.org>
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/amd64/amd64/trap.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"); } |