mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 20:07:36 +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:
parent
239c0bd6a6
commit
e7c1caa2b5
1 changed files with 0 additions and 1 deletions
|
@ -280,7 +280,6 @@ void exception_14_handler(RegisterDumpWithExceptionCode& regs)
|
||||||
regs.exception_code & 2 ? "write" : "read",
|
regs.exception_code & 2 ? "write" : "read",
|
||||||
faultAddress);
|
faultAddress);
|
||||||
dump(regs);
|
dump(regs);
|
||||||
hang();
|
|
||||||
current->process().crash();
|
current->process().crash();
|
||||||
} else if (response == PageFaultResponse::Continue) {
|
} else if (response == PageFaultResponse::Continue) {
|
||||||
#ifdef PAGE_FAULT_DEBUG
|
#ifdef PAGE_FAULT_DEBUG
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue