kern

view src/timer.h @ 51:b1e8c8251884

lalalala
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 01 Aug 2011 06:45:29 +0300
parents 373a9f50b4e6
children 0be4615594df
line source
1 #ifndef _TIMER_H_
2 #define _TIMER_H_
4 typedef void (*timer_func_t)(void*);
6 unsigned long nticks;
8 void init_timer(void);
10 int start_timer(unsigned long msec, timer_func_t cbfunc, void *cbarg);
12 #endif /* _TIMER_H_ */