mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:07:45 +00:00
Kernel: Interpret "reserved bit violation" page faults correctly
We don't actually react to these in any meaningful way other than crashing, but let's at least print the correct information. :^)
This commit is contained in:
parent
52deb09382
commit
c22a4301ed
2 changed files with 4 additions and 2 deletions
|
@ -348,7 +348,8 @@ struct PageFaultFlags {
|
|||
Write = 0x02,
|
||||
UserMode = 0x04,
|
||||
SupervisorMode = 0x00,
|
||||
InstructionFetch = 0x08,
|
||||
ReservedBitViolation = 0x08,
|
||||
InstructionFetch = 0x10,
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue