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/Graphics/VirtIOGPU | |
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/Graphics/VirtIOGPU')
-rw-r--r-- | Kernel/Graphics/VirtIOGPU/VirtIOGPU.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Graphics/VirtIOGPU/VirtIOGPU.h b/Kernel/Graphics/VirtIOGPU/VirtIOGPU.h index 3f52fbb94f..e0c79efb5f 100644 --- a/Kernel/Graphics/VirtIOGPU/VirtIOGPU.h +++ b/Kernel/Graphics/VirtIOGPU/VirtIOGPU.h @@ -240,7 +240,7 @@ private: // Synchronous commands WaitQueue m_outstanding_request; - Lock m_operation_lock; + Mutex m_operation_lock; OwnPtr<Region> m_scratch_space; }; |