Nucleus
Barry Exiting interrupt context on clone() child 571b85e (3 years, 3 months ago)
diff --git a/memory/fault.c b/memory/fault.c
index dd7953f..0ed452d 100644
--- a/memory/fault.c
+++ b/memory/fault.c
@@ -22,6 +22,7 @@ early_page_fault_handler(struct InterruptFrame *frame, uint32_t err)
if (!PAGE_ADDR(addr))
panic("Null dereference @ %#.8x", frame->eip);
ASSERT(!present);
+ kprintf("Allocating frame for %#.8x [%#.8x]", addr, frame->eip);
/* Allocate a page */
set_page(addr, alloc_frame() | PTE_PRESENT | PTE_WRITE | PTE_GLOBAL);
}