blob: aac58c4e088e89bd1768e62c7b09224f103f0929 [file] [log] [blame]
Wedson Almeida Filho987c0ff2018-06-20 16:34:38 +01001#ifndef _TIMER_H
2#define _TIMER_H
3
4#include <stdbool.h>
5
6void timer_init(void);
7void timer_init_percpu(void);
8void timer_set(uint64_t time, bool (*cb)(void *), void *context);
9
10#endif /* _TIMER_H */