summaryrefslogtreecommitdiff
path: root/Kernel/VM/PageDirectory.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-06-07 12:56:50 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-06-07 12:56:50 +0200
commite42c3b4fd7637225a65d0d61a80365f4118af8fa (patch)
treee10daa02102afdce4a43579fc6b5fe238f167389 /Kernel/VM/PageDirectory.h
parent0ed89440f149bdeb6693c9ab7aab1f452461bf5e (diff)
downloadserenity-e42c3b4fd7637225a65d0d61a80365f4118af8fa.zip
Kernel: Rename LinearAddress => VirtualAddress.
Diffstat (limited to 'Kernel/VM/PageDirectory.h')
-rw-r--r--Kernel/VM/PageDirectory.h2
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; }