From 65a111a543f49c645ec21ef44f289c29ccb27e8d Mon Sep 17 00:00:00 2001 From: Ada Christine Date: Thu, 17 Mar 2022 14:03:12 +0000 Subject: pulled out kprintf() and friends into lib/ --- kc/core/memory/memory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kc/core/memory') 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); } -- cgit v1.3.1-1-g115d