summaryrefslogtreecommitdiff
path: root/Kernel/MemoryManager.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-10-26 18:43:25 +0200
committerAndreas Kling <awesomekling@gmail.com>2018-10-26 18:43:25 +0200
commit81627cf7d539b3aa15773967f6c3d7c6e7ca86be (patch)
tree5c40f918f6b2cc782a486a670a7d4f8ff0bd91dc /Kernel/MemoryManager.h
parenta44735991640244784e22e778ed7e13419eb2723 (diff)
downloadserenity-81627cf7d539b3aa15773967f6c3d7c6e7ca86be.zip
Add a simple /proc/mounts that enumerates the current VFS mounts.
Diffstat (limited to 'Kernel/MemoryManager.h')
-rw-r--r--Kernel/MemoryManager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/MemoryManager.h b/Kernel/MemoryManager.h
index 7b1a607914..d2873c0d79 100644
--- a/Kernel/MemoryManager.h
+++ b/Kernel/MemoryManager.h
@@ -37,7 +37,7 @@ bool copyToZone(Zone&, const void* data, size_t);
class MemoryManager {
public:
- static MemoryManager& the();
+ static MemoryManager& the() PURE;
PhysicalAddress pageDirectoryBase() const { return PhysicalAddress(reinterpret_cast<dword>(m_pageDirectory)); }