mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-08 12:56:23 +03:00
18 lines
299 B
C
18 lines
299 B
C
|
/*
|
||
|
* Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <AK/EnumBits.h>
|
||
|
#include <AK/Types.h>
|
||
|
|
||
|
enum class JailIsolationFlags : u32 {
|
||
|
None = 0,
|
||
|
PIDIsolation = 1 << 0,
|
||
|
};
|
||
|
|
||
|
AK_ENUM_BITWISE_OPERATORS(JailIsolationFlags);
|