mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 05:27:43 +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
18 changed files with 57 additions and 56 deletions
|
@ -44,7 +44,7 @@ private:
|
|||
virtual StringView class_name() const override { return "PTYMultiplexer"; }
|
||||
|
||||
static constexpr size_t max_pty_pairs = 64;
|
||||
ProtectedValue<Vector<unsigned, max_pty_pairs>> m_freelist;
|
||||
MutexProtected<Vector<unsigned, max_pty_pairs>> m_freelist;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue