mirror of
https://github.com/RGBCube/serenity
synced 2025-06-22 04:12:06 +00:00
38 lines
715 B
C++
38 lines
715 B
C++
/*
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2018-2022, James Mintram <me@jamesrm.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <Kernel/Memory/PageDirectory.h>
|
|
|
|
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();
|
|
}
|
|
|
|
}
|