mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 07:37:44 +00:00
Kernel: VERIFY that nobody is holding lock in ~BlockerSet()
By the time we end up destroying a BlockerSet, we don't need to take the internal spinlock. And nobody else should be holding it either. So replace the SpinlockLocker with a VERIFY().
This commit is contained in:
parent
85546af417
commit
928929bbe1
1 changed files with 1 additions and 1 deletions
|
@ -398,7 +398,7 @@ public:
|
||||||
|
|
||||||
virtual ~BlockerSet()
|
virtual ~BlockerSet()
|
||||||
{
|
{
|
||||||
SpinlockLocker lock(m_lock);
|
VERIFY(!m_lock.is_locked());
|
||||||
VERIFY(m_blockers.is_empty());
|
VERIFY(m_blockers.is_empty());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue