mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 05:37:34 +00:00
Kernel: Add VERIFY_NOT_REACHED to aarch64 PageDirectory.cpp
This commit is contained in:
parent
283d8e8f51
commit
df9a833d7a
1 changed files with 5 additions and 0 deletions
|
@ -11,23 +11,28 @@ namespace Kernel::Memory {
|
||||||
|
|
||||||
void PageDirectory::register_page_directory(PageDirectory*)
|
void PageDirectory::register_page_directory(PageDirectory*)
|
||||||
{
|
{
|
||||||
|
VERIFY_NOT_REACHED();
|
||||||
}
|
}
|
||||||
|
|
||||||
void PageDirectory::deregister_page_directory(PageDirectory*)
|
void PageDirectory::deregister_page_directory(PageDirectory*)
|
||||||
{
|
{
|
||||||
|
VERIFY_NOT_REACHED();
|
||||||
}
|
}
|
||||||
|
|
||||||
RefPtr<PageDirectory> PageDirectory::find_current()
|
RefPtr<PageDirectory> PageDirectory::find_current()
|
||||||
{
|
{
|
||||||
|
VERIFY_NOT_REACHED();
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
void activate_kernel_page_directory(PageDirectory const&)
|
void activate_kernel_page_directory(PageDirectory const&)
|
||||||
{
|
{
|
||||||
|
VERIFY_NOT_REACHED();
|
||||||
}
|
}
|
||||||
|
|
||||||
void activate_page_directory(PageDirectory const&, Thread*)
|
void activate_page_directory(PageDirectory const&, Thread*)
|
||||||
{
|
{
|
||||||
|
VERIFY_NOT_REACHED();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue