mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 05:09:12 +00:00
Kernel: Run clang-format on files
Let's rip off the band-aid
This commit is contained in:
parent
d0629d0a8c
commit
81adefef27
Notes:
sideshowbarker
2024-07-19 08:11:28 +09:00
Author: https://github.com/shannonbooth
Commit: 81adefef27
Pull-request: https://github.com/SerenityOS/serenity/pull/1497
25 changed files with 2992 additions and 2995 deletions
|
@ -261,10 +261,10 @@ void page_fault_handler(RegisterState regs)
|
|||
}
|
||||
|
||||
dbg() << "Unrecoverable page fault, "
|
||||
<< (regs.exception_code & PageFaultFlags::ReservedBitViolation ? "reserved bit violation / " : "")
|
||||
<< (regs.exception_code & PageFaultFlags::InstructionFetch ? "instruction fetch / " : "")
|
||||
<< (regs.exception_code & PageFaultFlags::Write ? "write to" : "read from")
|
||||
<< " address " << VirtualAddress(fault_address);
|
||||
<< (regs.exception_code & PageFaultFlags::ReservedBitViolation ? "reserved bit violation / " : "")
|
||||
<< (regs.exception_code & PageFaultFlags::InstructionFetch ? "instruction fetch / " : "")
|
||||
<< (regs.exception_code & PageFaultFlags::Write ? "write to" : "read from")
|
||||
<< " address " << VirtualAddress(fault_address);
|
||||
u32 malloc_scrub_pattern = explode_byte(MALLOC_SCRUB_BYTE);
|
||||
u32 free_scrub_pattern = explode_byte(FREE_SCRUB_BYTE);
|
||||
u32 kmalloc_scrub_pattern = explode_byte(KMALLOC_SCRUB_BYTE);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue