summaryrefslogtreecommitdiff
path: root/Kernel/Locking/SpinlockProtected.h
AgeCommit message (Collapse)Author
2022-08-19Kernel: Require lock rank for Spinlock constructionkleines Filmröllchen
All users which relied on the default constructor use a None lock rank for now. This will make it easier to in the future remove LockRank and actually annotate the ranks by searching for None.
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-08Kernel: Make SpinlockProtected constructor forward all argumentsAndreas Kling
This allows you to instantiate SpinlockProtected<T> where T requires constructor arguments.
2021-08-22Kernel: Rename ScopedSpinlock => SpinlockLockerAndreas Kling
This matches MutexLocker, and doesn't sound like it's a lock itself.
2021-08-22Kernel: Rename SpinLock => SpinlockAndreas Kling