mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:17:35 +00:00
Kernel: Move LockMode into Locking/
This commit is contained in:
parent
786036820b
commit
479b07339c
3 changed files with 2 additions and 2 deletions
17
Kernel/Locking/LockMode.h
Normal file
17
Kernel/Locking/LockMode.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
/*
|
||||
* Copyright (c) 2020, the SerenityOS developers.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
enum class LockMode : u8 {
|
||||
Unlocked,
|
||||
Shared,
|
||||
Exclusive
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue