diff options
author | Andreas Kling <kling@serenityos.org> | 2021-07-17 21:09:51 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-17 21:10:32 +0200 |
commit | cee9528168d16ba4fb306df1ae5e2d0afe569dce (patch) | |
tree | dc2346f141a673bbc15a9b8db9e4ffb986f52de1 /Kernel/FileSystem/Plan9FileSystem.h | |
parent | a803c4026cf44d47d8f6bcad0854078742699fb0 (diff) | |
download | serenity-cee9528168d16ba4fb306df1ae5e2d0afe569dce.zip |
Kernel: Rename Lock to Mutex
Let's be explicit about what kind of lock this is meant to be.
Diffstat (limited to 'Kernel/FileSystem/Plan9FileSystem.h')
-rw-r--r-- | Kernel/FileSystem/Plan9FileSystem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/FileSystem/Plan9FileSystem.h b/Kernel/FileSystem/Plan9FileSystem.h index 0c79fdaf11..53f1621a89 100644 --- a/Kernel/FileSystem/Plan9FileSystem.h +++ b/Kernel/FileSystem/Plan9FileSystem.h @@ -135,7 +135,7 @@ private: ProtocolVersion m_remote_protocol_version { ProtocolVersion::v9P2000 }; size_t m_max_message_size { 4 * KiB }; - Lock m_send_lock { "Plan9FS send" }; + Mutex m_send_lock { "Plan9FS send" }; Plan9FSBlockCondition m_completion_blocker; HashMap<u16, NonnullRefPtr<ReceiveCompletion>> m_completions; |