mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
7440112cd9
This makes the code architecture independent, and thus makes it work for aarch64.
26 lines
513 B
C++
26 lines
513 B
C++
/*
|
|
* Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2023, Timon Kruiper <timonkruiper@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
#include <Kernel/Arch/PageDirectory.h>
|
|
#include <Kernel/Forward.h>
|
|
|
|
namespace Kernel {
|
|
|
|
class ScopedAddressSpaceSwitcher {
|
|
public:
|
|
explicit ScopedAddressSpaceSwitcher(Process&);
|
|
~ScopedAddressSpaceSwitcher();
|
|
|
|
private:
|
|
LockRefPtr<Memory::PageDirectory> m_previous_page_directory;
|
|
};
|
|
|
|
}
|