banan-os/kernel/kernel/Semaphore.cpp

17 lines
237 B
C++

#include <kernel/Scheduler.h>
#include <kernel/Semaphore.h>
namespace Kernel
{
void Semaphore::block()
{
Scheduler::get().block_current_thread(this);
}
void Semaphore::unblock()
{
Scheduler::get().unblock_threads(this);
}
}