diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2021-03-16 20:46:15 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2021-03-16 20:46:15 +0200 |
commit | 785d20a6b809e140448108e29b791d59c4650c91 (patch) | |
tree | 2617763dac6520d83a969157e89c339ee70c6ee3 /src/idt | |
parent | Switch lto to full (diff) | |
download | kernel.cpp-785d20a6b809e140448108e29b791d59c4650c91.tar.xz |
Mostly fix scheduler throwing page faults
Diffstat (limited to 'src/idt')
-rw-r--r-- | src/idt/exception.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/idt/exception.cc b/src/idt/exception.cc index efffd95..b15fe83 100644 --- a/src/idt/exception.cc +++ b/src/idt/exception.cc @@ -2,7 +2,7 @@ #include "cpu/registers.h" extern "C" void handle_exception(const cpu_state_t* r) { - printk("exception ", uhex{r->irq}, " error ", uhex{r->error}, "eip: ", uhex{r->eip}, '\n'); + printk("exception ", uhex{r->irq}, " ec ", uhex{r->error}, " eip: ", uhex{r->eip}, '\n'); abort(); }; |