os-k/src/kaleid/kernel/ke/panic.c

69 lines
1.8 KiB
C
Raw Normal View History

2018-12-24 22:38:14 +01:00
//----------------------------------------------------------------------------//
// GNU GPL OS/K //
// //
// Authors: spectral` //
// NeoX //
// //
// Desc: How NOT to panic 101 //
//----------------------------------------------------------------------------//
2018-12-30 20:13:56 +01:00
#include <kaleid/kernel/ke/panic.h>
#include <kaleid/kernel/ke/state.h>
2018-12-30 22:21:19 +01:00
#define _UNLOCKED_IO
2018-12-30 20:13:56 +01:00
#include <kaleid/kernel/io/terminal.h>
2018-12-24 22:38:14 +01:00
//
// Panic message
//
2018-12-30 22:21:19 +01:00
const char *__panicmsg = NULL;
2018-12-24 22:38:14 +01:00
//
// Failed assert() handler
//
2018-12-31 15:08:56 +01:00
noreturn void _assert_handler(const char *msg,
2018-12-31 10:49:08 +01:00
const char *file,
int line,
const char *func)
2018-12-24 22:38:14 +01:00
{
// not getting out of here
2018-12-29 23:51:00 +01:00
DosDisableInterrupts();
2018-12-24 22:38:14 +01:00
(void)file; (void)line; (void)func;
// XXX sprintf() to create a proper panicstr
2018-12-29 23:51:00 +01:00
DosPanic(msg);
2018-12-24 22:38:14 +01:00
}
//
// Your best boy panic()
//
2018-12-29 23:51:00 +01:00
void DosPanic(const char *str)
2018-12-24 22:38:14 +01:00
{
2018-12-29 23:51:00 +01:00
DosDisableInterrupts();
2018-12-24 22:38:14 +01:00
2018-12-29 23:51:00 +01:00
DosSetKernState(KSTATE_PANIC);
2018-12-30 22:21:19 +01:00
DosClearTerm_Unlocked(stdout);
2018-12-24 22:38:14 +01:00
if (str == NULL) {
str = "(no message given)";
}
2018-12-30 22:21:19 +01:00
if (DosGetPanicStr()) {
DosPrintOnTerm_Unlocked(stdout, "double panic!\n");
2018-12-29 23:51:00 +01:00
DosHaltCPU();
2018-12-24 22:38:14 +01:00
}
2018-12-30 22:21:19 +01:00
DosSetPanicStr(str);
2018-12-24 22:38:14 +01:00
2018-12-30 22:21:19 +01:00
// we cannot lock anything when panicking
DosPrintOnTerm_Unlocked(stdout, "panic! - ");
DosPrintOnTerm_Unlocked(stdout, str);
2018-12-24 22:38:14 +01:00
while (TRUE) {
2018-12-29 23:51:00 +01:00
DosHaltCPU();
2018-12-24 22:38:14 +01:00
}
}