mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:57:35 +00:00
Kernel: Move ExecutionMode.h to the Security subdirectory
This commit is contained in:
parent
7c0540a229
commit
c9a34cae66
4 changed files with 3 additions and 3 deletions
18
Kernel/Security/ExecutionMode.h
Normal file
18
Kernel/Security/ExecutionMode.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* Copyright (c) 2021, the SerenityOS developers.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <AK/Types.h>
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
enum class ExecutionMode : u8 {
|
||||
Kernel = 0,
|
||||
User,
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue