1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:57:35 +00:00

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

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