Luna/kernel/src/arch/x86_64/Timer.h
apio 8bcec00a9d
All checks were successful
continuous-integration/drone/push Build is passing
kernel: Change the timer subsystem to use timespecs natively
2023-06-03 13:15:10 +02:00

7 lines
193 B
C

#pragma once
#include <luna/Types.h>
// Every timer tick is equivalent to 250 microseconds.
// FIXME: Change ARCH_TIMER_RESOLUTION to use nanoseconds.
const usize ARCH_TIMER_RESOLUTION = 250;