diff options
| author | Ada Christine <adachristine18@gmail.com> | 2022-03-17 14:03:12 +0000 |
|---|---|---|
| committer | Ada Christine <adachristine18@gmail.com> | 2022-03-17 14:03:12 +0000 |
| commit | 65a111a543f49c645ec21ef44f289c29ccb27e8d (patch) | |
| tree | bb5442a95ae6ea7632299da9c3ca74f2866b871c /kc/core/memory | |
| parent | 28ea7b987645e94566e9277e1c4086c58fa96225 (diff) | |
pulled out kprintf() and friends into lib/
Diffstat (limited to 'kc/core/memory')
| -rw-r--r-- | kc/core/memory/memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kc/core/memory/memory.c b/kc/core/memory/memory.c index 9a1f42f..df48271 100644 --- a/kc/core/memory/memory.c +++ b/kc/core/memory/memory.c @@ -630,7 +630,7 @@ void page_fault_handler(struct isr_context *context) void general_protection_handler(struct isr_context *context) { //TODO: implement #gp handler - kputs("general protection violation\n"); + kprintf("general protection violation\n"); print_exception_context(context); PANIC(UNHANDLED_FAULT); } |
