summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/KernelKit/Timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'dev/kernel/KernelKit/Timer.h')
-rw-r--r--dev/kernel/KernelKit/Timer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/kernel/KernelKit/Timer.h b/dev/kernel/KernelKit/Timer.h
index 6c9195aa..b6d23e6b 100644
--- a/dev/kernel/KernelKit/Timer.h
+++ b/dev/kernel/KernelKit/Timer.h
@@ -44,13 +44,13 @@ namespace Kernel
private:
UIntPtr* fDigitalTimer{nullptr};
- Int64 fWaitFor{0};
+ Int64 fWaitFor{0};
};
class HardwareTimer final : public TimerInterface
{
public:
- explicit HardwareTimer(Int64 seconds);
+ explicit HardwareTimer(UInt64 seconds);
~HardwareTimer() override;
public:
@@ -61,7 +61,7 @@ namespace Kernel
private:
UIntPtr* fDigitalTimer{nullptr};
- Int64 fWaitFor{0};
+ Int64 fWaitFor{0};
};
inline Int64 rtl_ms(Int64 time)