1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:57:35 +00:00

Kernel: Move LockMode into Locking/

This commit is contained in:
Jean-Baptiste Boric 2021-07-18 09:09:04 +02:00 committed by Andreas Kling
parent 786036820b
commit 479b07339c
3 changed files with 2 additions and 2 deletions

17
Kernel/Locking/LockMode.h Normal file
View 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
};
}