mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
23 lines
287 B
C
23 lines
287 B
C
|
/*
|
||
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <AK/Types.h>
|
||
|
|
||
|
namespace Kernel {
|
||
|
|
||
|
class SmapDisabler {
|
||
|
public:
|
||
|
SmapDisabler();
|
||
|
~SmapDisabler();
|
||
|
|
||
|
private:
|
||
|
const FlatPtr m_flags;
|
||
|
};
|
||
|
|
||
|
}
|