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

Kernel: Implement safe_* memory access functions for x86_64

This commit is contained in:
Gunnar Beutner 2021-06-27 14:12:55 +02:00 committed by Andreas Kling
parent 79ab9cce18
commit df530941cc
4 changed files with 57 additions and 120 deletions

View file

@ -95,6 +95,6 @@ struct RegisterState;
}
}
bool handle_safe_access_fault(RegisterState& regs, u32 fault_address);
bool handle_safe_access_fault(RegisterState& regs, FlatPtr fault_address);
}