1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:28:12 +00:00

Kernel: Always dump_backtrace() on process crash.

This commit is contained in:
Andreas Kling 2019-05-16 19:49:48 +02:00
parent 0ba4ceb2cd
commit 4e88872c8e
2 changed files with 2 additions and 1 deletions

View file

@ -281,7 +281,6 @@ void exception_14_handler(RegisterDumpWithExceptionCode& regs)
regs.exception_code & 2 ? "write" : "read",
faultAddress);
dump(regs);
dump_backtrace();
current->process().crash();
} else if (response == PageFaultResponse::Continue) {
#ifdef PAGE_FAULT_DEBUG