summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/src/SoftwareTimer.cc
blob: f83df762dcb6b2fadc5da4751217f3762e7f8c78 (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
/* -------------------------------------------

	Copyright (C) 2024-2025, Amlal EL Mahrouss, all rights reserved.

------------------------------------------- */

#include <KernelKit/Timer.h>

/// @brief SoftwareTimer class, meant to be generic.

using namespace Kernel;

SoftwareTimer::SoftwareTimer(Int64 seconds)
	: fWaitFor(seconds)
{
	fDigitalTimer = new IntPtr();
	MUST_PASS(fDigitalTimer);
}

SoftwareTimer::~SoftwareTimer()
{
	delete fDigitalTimer;
	fDigitalTimer = nullptr;

	fWaitFor = 0;
}

BOOL SoftwareTimer::Wait() noexcept
{
	if (fWaitFor < 1)
		return NO;

	while (*fDigitalTimer < (*fDigitalTimer + fWaitFor))
	{
		++(*fDigitalTimer);
	}

	return YES;
}