Wedson Almeida Filho | 987c0ff | 2018-06-20 16:34:38 +0100 | [diff] [blame^] | 1 | #ifndef _TIMER_H |
2 | #define _TIMER_H | ||||
3 | |||||
4 | #include <stdbool.h> | ||||
5 | |||||
6 | void timer_init(void); | ||||
7 | void timer_init_percpu(void); | ||||
8 | void timer_set(uint64_t time, bool (*cb)(void *), void *context); | ||||
9 | |||||
10 | #endif /* _TIMER_H */ |