2020-12-14 20:36:22 -03:00
|
|
|
/*
|
2021-04-28 17:46:44 -03:00
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
2020-12-14 20:36:22 -03:00
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-12-14 20:36:22 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
2021-07-10 13:23:16 -03:00
|
|
|
enum class LockMode : u8 {
|
2020-12-14 20:36:22 -03:00
|
|
|
Unlocked,
|
|
|
|
|
Shared,
|
|
|
|
|
Exclusive
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|