Implement timer table list and check for expired timers

This commit is contained in:
2026-05-28 00:36:25 +02:00
parent 19a9dfe7c6
commit f562aa0874
6 changed files with 75 additions and 8 deletions

View File

@@ -95,3 +95,6 @@ LONG KE::SystemTime::TickOffset;
/* The runtime adjustment value applied to the system clock at each interrupt */
ULONG KE::SystemTime::TimeAdjustment;
/* Kernel timer table containing a list of active timers */
LIST_ENTRY KE::Timer::TimerTableListHead[KTIMER_TABLE_SIZE];