diff options
author | Richard Braun <rbraun@sceen.net> | 2017-08-27 16:16:00 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-08-27 16:16:00 +0200 |
commit | 3824ad00551b43083c39638ce62ece92c34bae94 (patch) | |
tree | f7e60a02eb90c88041320560aa8a1c2fee6c0cd5 /kern/clock.c | |
parent | 2691b6088bddb12c4a17d08628e0af0a96b59b7f (diff) |
kern/timer: new module
Diffstat (limited to 'kern/clock.c')
-rw-r--r-- | kern/clock.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kern/clock.c b/kern/clock.c index d8af3f4c..b4a6f046 100644 --- a/kern/clock.c +++ b/kern/clock.c @@ -27,6 +27,7 @@ #include <kern/sref.h> #include <kern/syscnt.h> #include <kern/thread.h> +#include <kern/timer.h> #include <kern/work.h> #include <machine/boot.h> #include <machine/cpu.h> @@ -89,6 +90,7 @@ void clock_tick_intr(void) #endif /* ATOMIC_HAVE_64B_OPS */ } + timer_report_periodic_event(); llsync_report_periodic_event(); sref_report_periodic_event(); work_report_periodic_event(); |