mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-12 17:37:53 +03:00
35 lines
593 B
C++
35 lines
593 B
C++
|
#include <Kernel/Thread.h>
|
||
|
#include <Kernel/WaitQueue.h>
|
||
|
|
||
|
WaitQueue::WaitQueue()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
WaitQueue::~WaitQueue()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void WaitQueue::enqueue(Thread& thread)
|
||
|
{
|
||
|
InterruptDisabler disabler;
|
||
|
m_threads.append(&thread);
|
||
|
}
|
||
|
|
||
|
void WaitQueue::wake_one()
|
||
|
{
|
||
|
InterruptDisabler disabler;
|
||
|
if (m_threads.is_empty())
|
||
|
return;
|
||
|
if (auto* thread = m_threads.take_first())
|
||
|
thread->unblock();
|
||
|
}
|
||
|
|
||
|
void WaitQueue::wake_all()
|
||
|
{
|
||
|
InterruptDisabler disabler;
|
||
|
if (m_threads.is_empty())
|
||
|
return;
|
||
|
while (!m_threads.is_empty())
|
||
|
m_threads.take_first()->unblock();
|
||
|
}
|