diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 12:56:50 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 12:56:50 +0200 |
commit | e42c3b4fd7637225a65d0d61a80365f4118af8fa (patch) | |
tree | e10daa02102afdce4a43579fc6b5fe238f167389 /Kernel/VM/PageDirectory.h | |
parent | 0ed89440f149bdeb6693c9ab7aab1f452461bf5e (diff) | |
download | serenity-e42c3b4fd7637225a65d0d61a80365f4118af8fa.zip |
Kernel: Rename LinearAddress => VirtualAddress.
Diffstat (limited to 'Kernel/VM/PageDirectory.h')
-rw-r--r-- | Kernel/VM/PageDirectory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/VM/PageDirectory.h b/Kernel/VM/PageDirectory.h index 8207389ab7..b4f7ee876e 100644 --- a/Kernel/VM/PageDirectory.h +++ b/Kernel/VM/PageDirectory.h @@ -17,7 +17,7 @@ public: dword cr3() const { return m_directory_page->paddr().get(); } dword* entries() { return reinterpret_cast<dword*>(cr3()); } - void flush(LinearAddress); + void flush(VirtualAddress); RangeAllocator& range_allocator() { return m_range_allocator; } |