summaryrefslogtreecommitdiff
path: root/Kernel/Library
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-08-22 00:28:07 +0200
committerAndreas Kling <kling@serenityos.org>2021-08-22 03:34:09 +0200
commited6f84c2c96dc5f850a51077e5c5a02fbe29d96b (patch)
treed61384a3b3159f8422febc738409dcd336993626 /Kernel/Library
parent532ffa7ddba18fb3b04c787988599aca73a4d789 (diff)
downloadserenity-ed6f84c2c96dc5f850a51077e5c5a02fbe29d96b.zip
Kernel: Rename SpinLockProtectedValue<T> => SpinLockProtected<T>
Diffstat (limited to 'Kernel/Library')
-rw-r--r--Kernel/Library/ListedRefCounted.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Library/ListedRefCounted.h b/Kernel/Library/ListedRefCounted.h
index 6eaefee27b..04986173c8 100644
--- a/Kernel/Library/ListedRefCounted.h
+++ b/Kernel/Library/ListedRefCounted.h
@@ -11,7 +11,7 @@
namespace Kernel {
// ListedRefCounted<T> is a slot-in replacement for RefCounted<T> to use in classes
-// that add themselves to a SpinLockProtectedValue<IntrusiveList> when constructed.
+// that add themselves to a SpinLockProtected<IntrusiveList> when constructed.
// The custom unref() implementation here ensures that the the list is locked during
// unref(), and that the T is removed from the list before ~T() is invoked.