mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 19:19:44 +03:00
91db482ad3
No functional change.
26 lines
377 B
C++
26 lines
377 B
C++
/*
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <Kernel/Arch/SmapDisabler.h>
|
|
|
|
#include <Kernel/Arch/x86_64/ASM_wrapper.h>
|
|
|
|
namespace Kernel {
|
|
|
|
SmapDisabler::SmapDisabler()
|
|
: m_flags(cpu_flags())
|
|
{
|
|
stac();
|
|
}
|
|
|
|
SmapDisabler::~SmapDisabler()
|
|
{
|
|
if (!(m_flags & 0x40000))
|
|
clac();
|
|
}
|
|
|
|
}
|