1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 05:37:44 +00:00

Kernel/aarch64: Add FIXME debug messages to PageDirectory

These are added to make clear that the current memory situation in the
aarch64 kernel is not complete yet.
This commit is contained in:
Timon Kruiper 2022-12-22 19:06:15 +01:00 committed by Andrew Kaster
parent 21deb603de
commit 5a5fa10046
2 changed files with 8 additions and 3 deletions

View file

@ -119,7 +119,12 @@ public:
bool is_user_allowed() const { TODO_AARCH64(); }
void set_user_allowed(bool) { }
bool is_writable() const { TODO_AARCH64(); }
bool is_writable() const
{
dbgln("FIXME: PageTableEntry: Actually check if the entry is writable!");
return true;
}
void set_writable(bool) { }
bool is_write_through() const { TODO_AARCH64(); }