mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-08 20:32:56 +03:00
18 lines
209 B
C++
18 lines
209 B
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Kernel {
|
|
|
|
enum class LockMode : u8 {
|
|
Unlocked,
|
|
Shared,
|
|
Exclusive
|
|
};
|
|
|
|
}
|