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

Kernel: Replace the last "linear" with "virtual".

This commit is contained in:
Andreas Kling 2019-06-13 21:42:12 +02:00
parent 42f374d0f1
commit 1c5677032a
2 changed files with 3 additions and 2 deletions

View file

@ -11,6 +11,7 @@ public:
}
bool is_null() const { return m_address == 0; }
bool is_page_aligned() const { return (m_address & 0xfff) == 0; }
VirtualAddress offset(dword o) const { return VirtualAddress(m_address + o); }
dword get() const { return m_address; }