mirror of
https://github.com/RGBCube/serenity
synced 2025-05-30 21:58:10 +00:00
Kernel: Rename SpinLockProtectedValue<T> => SpinLockProtected<T>
This commit is contained in:
parent
532ffa7ddb
commit
ed6f84c2c9
14 changed files with 28 additions and 27 deletions
|
@ -22,9 +22,9 @@
|
|||
|
||||
namespace Kernel {
|
||||
|
||||
static Singleton<SpinLockProtectedValue<Inode::AllInstancesList>> s_all_instances;
|
||||
static Singleton<SpinLockProtected<Inode::AllInstancesList>> s_all_instances;
|
||||
|
||||
SpinLockProtectedValue<Inode::AllInstancesList>& Inode::all_instances()
|
||||
SpinLockProtected<Inode::AllInstancesList>& Inode::all_instances()
|
||||
{
|
||||
return s_all_instances;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue