1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 16:47:45 +00:00

Kernel: Make Region.cpp compile on aarch64

This commit is contained in:
James Mintram 2022-04-02 23:47:07 +01:00 committed by Brian Gianforcaro
parent a883079b29
commit 627fd231d5
3 changed files with 25 additions and 4 deletions

View file

@ -48,6 +48,16 @@ public:
return 0;
}
ALWAYS_INLINE bool has_nx() const
{
return true;
}
ALWAYS_INLINE bool has_pat() const
{
return false;
}
ALWAYS_INLINE static FlatPtr current_in_irq()
{
return 0;