From e7c1caa2b5437dd34b4ebf0253cb400c916495f2 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 24 Mar 2019 02:11:07 +0100 Subject: [PATCH] Kernel: Don't hang the system on unrecoverable page fault. I needed this while debugging threads and now they basically work pretty well so we can remove this. :^) --- Kernel/i386.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Kernel/i386.cpp b/Kernel/i386.cpp index 3133b9ae4e..d049d3afe0 100644 --- a/Kernel/i386.cpp +++ b/Kernel/i386.cpp @@ -280,7 +280,6 @@ void exception_14_handler(RegisterDumpWithExceptionCode& regs) regs.exception_code & 2 ? "write" : "read", faultAddress); dump(regs); - hang(); current->process().crash(); } else if (response == PageFaultResponse::Continue) { #ifdef PAGE_FAULT_DEBUG