mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
Kernel: Rename ProtectedValue<T> => MutexProtected<T>
Let's make it obvious what we're protecting it with.
This commit is contained in:
parent
81d990b551
commit
c2fc33becd
Notes:
sideshowbarker
2024-07-18 05:25:05 +09:00
Author: https://github.com/awesomekling
Commit: c2fc33becd
18 changed files with 57 additions and 56 deletions
|
@ -20,7 +20,7 @@
|
|||
#include <Kernel/FileSystem/UnveilNode.h>
|
||||
#include <Kernel/Forward.h>
|
||||
#include <Kernel/KResult.h>
|
||||
#include <Kernel/Locking/ProtectedValue.h>
|
||||
#include <Kernel/Locking/MutexProtected.h>
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
|
@ -93,7 +93,7 @@ private:
|
|||
RefPtr<Inode> m_root_inode;
|
||||
RefPtr<Custody> m_root_custody;
|
||||
|
||||
ProtectedValue<Vector<Mount, 16>> m_mounts;
|
||||
MutexProtected<Vector<Mount, 16>> m_mounts;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue