diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-26 18:43:25 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-26 18:43:25 +0200 |
commit | 81627cf7d539b3aa15773967f6c3d7c6e7ca86be (patch) | |
tree | 5c40f918f6b2cc782a486a670a7d4f8ff0bd91dc /Kernel/MemoryManager.h | |
parent | a44735991640244784e22e778ed7e13419eb2723 (diff) | |
download | serenity-81627cf7d539b3aa15773967f6c3d7c6e7ca86be.zip |
Add a simple /proc/mounts that enumerates the current VFS mounts.
Diffstat (limited to 'Kernel/MemoryManager.h')
-rw-r--r-- | Kernel/MemoryManager.h | 2 |
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)); } |