blob: aac58c4e088e89bd1768e62c7b09224f103f0929 [file] [log] [blame]
#ifndef _TIMER_H
#define _TIMER_H
#include <stdbool.h>
void timer_init(void);
void timer_init_percpu(void);
void timer_set(uint64_t time, bool (*cb)(void *), void *context);
#endif /* _TIMER_H */