|
|
|
@ -68,7 +68,9 @@ enum PAGE_FAULT_ERROR {
|
|
|
|
void handle_keyboard() {}
|
|
|
|
void handle_keyboard() {}
|
|
|
|
|
|
|
|
|
|
|
|
[[gnu::interrupt]] void handle_panic(InterruptContext *context) {
|
|
|
|
[[gnu::interrupt]] void handle_panic(InterruptContext *context) {
|
|
|
|
(void)context;
|
|
|
|
DBG << "Generic KernelPanic triggered"<< endl;
|
|
|
|
|
|
|
|
printContext(context);
|
|
|
|
|
|
|
|
kernelpanic("Generic Panic Triggerd");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[[gnu::interrupt]] void handle_timer(InterruptContext *context) {
|
|
|
|
[[gnu::interrupt]] void handle_timer(InterruptContext *context) {
|
|
|
|
|