kern

view src/timer.h @ 73:b4b7198986a6

fixed a potential null dereference when deleting a bug in the redblack tree
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 15 Oct 2011 08:06:10 +0300
parents 0be4615594df
children
line source
1 #ifndef _TIMER_H_
2 #define _TIMER_H_
4 unsigned long nticks;
6 void init_timer(void);
8 int sys_sleep(int sec);
9 void sleep(unsigned long msec);
11 #endif /* _TIMER_H_ */