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/FileDescription.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/FileDescription.h')
-rw-r--r-- | Kernel/FileSystem/FileDescription.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/FileSystem/FileDescription.h b/Kernel/FileSystem/FileDescription.h index 81bab057b4..ae8f9d45b7 100644 --- a/Kernel/FileSystem/FileDescription.h +++ b/Kernel/FileSystem/FileDescription.h @@ -156,7 +156,7 @@ private: bool m_direct : 1 { false }; FIFO::Direction m_fifo_direction { FIFO::Direction::Neither }; - Lock m_lock { "FileDescription" }; + Mutex m_lock { "FileDescription" }; }; } |