summaryrefslogtreecommitdiff
path: root/Kernel/Locking/LockMode.h
blob: a0d1e25e3a9b18071cf121fea53370a6b8154aa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (c) 2020, the SerenityOS developers.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

namespace Kernel {

enum class LockMode : u8 {
    Unlocked,
    Shared,
    Exclusive
};

}