mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 08:17:35 +00:00
Kernel: Rename SpinLock => Spinlock
This commit is contained in:
parent
7d5d26b048
commit
55adace359
110 changed files with 491 additions and 491 deletions
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include <AK/Atomic.h>
|
||||
#include <AK/RefCounted.h>
|
||||
#include <Kernel/Locking/SpinLock.h>
|
||||
#include <Kernel/Locking/Spinlock.h>
|
||||
#include <Kernel/Memory/VMObject.h>
|
||||
#include <Kernel/Thread.h>
|
||||
|
||||
|
@ -37,7 +37,7 @@ public:
|
|||
|
||||
bool is_empty_and_no_imminent_waits()
|
||||
{
|
||||
ScopedSpinLock lock(m_lock);
|
||||
ScopedSpinlock lock(m_lock);
|
||||
return is_empty_and_no_imminent_waits_locked();
|
||||
}
|
||||
bool is_empty_and_no_imminent_waits_locked();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue