diff options
author | James Mintram <me@jamesrm.com> | 2022-04-04 22:06:58 +0100 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-04-04 14:35:54 -0700 |
commit | df9a833d7ace8c04625bf3237a98732a9511356d (patch) | |
tree | 94194ceb3b1c1b34bf33b45ce435c860785f7596 | |
parent | 283d8e8f51c814448802bf34e77bd11f35187137 (diff) | |
download | serenity-df9a833d7ace8c04625bf3237a98732a9511356d.zip |
Kernel: Add VERIFY_NOT_REACHED to aarch64 PageDirectory.cpp
-rw-r--r-- | Kernel/Arch/aarch64/PageDirectory.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Kernel/Arch/aarch64/PageDirectory.cpp b/Kernel/Arch/aarch64/PageDirectory.cpp index f87cfa9885..4f23a9dca1 100644 --- a/Kernel/Arch/aarch64/PageDirectory.cpp +++ b/Kernel/Arch/aarch64/PageDirectory.cpp @@ -11,23 +11,28 @@ namespace Kernel::Memory { void PageDirectory::register_page_directory(PageDirectory*) { + VERIFY_NOT_REACHED(); } void PageDirectory::deregister_page_directory(PageDirectory*) { + VERIFY_NOT_REACHED(); } RefPtr<PageDirectory> PageDirectory::find_current() { + VERIFY_NOT_REACHED(); return nullptr; } void activate_kernel_page_directory(PageDirectory const&) { + VERIFY_NOT_REACHED(); } void activate_page_directory(PageDirectory const&, Thread*) { + VERIFY_NOT_REACHED(); } } |