blob: e2e135d0b8e3b16d3da084ca903184a92fdf53af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/* -------------------------------------------
Copyright SoftwareLabs
------------------------------------------- */
#include <KernelKit/ProcessScheduler.hxx>
#include <KernelKit/Semaphore.hpp>
#include <KernelKit/Timer.hpp>
namespace NewOS
{
bool Semaphore::Unlock() noexcept
{
if (fLockingProcess)
fLockingProcess = nullptr;
return fLockingProcess == nullptr;
}
bool Semaphore::Lock(ProcessHeader* process)
{
if (!process || fLockingProcess)
return false;
fLockingProcess = process;
return true;
}
bool Semaphore::IsLocked() const
{
return fLockingProcess;
}
bool Semaphore::LockOrWait(ProcessHeader* process, const Int64& seconds)
{
if (process == nullptr)
return false;
HardwareTimer timer(Seconds(seconds));
timer.Wait();
return this->Lock(process);
}
void Semaphore::Sync() noexcept
{
while (fLockingProcess)
{
}
}
} // namespace NewOS
|