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. :^)
This commit is contained in:
Andreas Kling 2019-03-24 02:11:07 +01:00
parent 239c0bd6a6
commit e7c1caa2b5
Notes: sideshowbarker 2024-07-19 14:57:30 +09:00

View File

@ -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