diff options
author | Andreas Kling <kling@serenityos.org> | 2021-08-22 00:28:07 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-22 03:34:09 +0200 |
commit | ed6f84c2c96dc5f850a51077e5c5a02fbe29d96b (patch) | |
tree | d61384a3b3159f8422febc738409dcd336993626 /Kernel/TTY/SlavePTY.cpp | |
parent | 532ffa7ddba18fb3b04c787988599aca73a4d789 (diff) | |
download | serenity-ed6f84c2c96dc5f850a51077e5c5a02fbe29d96b.zip |
Kernel: Rename SpinLockProtectedValue<T> => SpinLockProtected<T>
Diffstat (limited to 'Kernel/TTY/SlavePTY.cpp')
-rw-r--r-- | Kernel/TTY/SlavePTY.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/TTY/SlavePTY.cpp b/Kernel/TTY/SlavePTY.cpp index 4655badf9c..06c5b4ef45 100644 --- a/Kernel/TTY/SlavePTY.cpp +++ b/Kernel/TTY/SlavePTY.cpp @@ -13,9 +13,9 @@ namespace Kernel { -static Singleton<SpinLockProtectedValue<SlavePTY::List>> s_all_instances; +static Singleton<SpinLockProtected<SlavePTY::List>> s_all_instances; -SpinLockProtectedValue<SlavePTY::List>& SlavePTY::all_instances() +SpinLockProtected<SlavePTY::List>& SlavePTY::all_instances() { return s_all_instances; } |