kern
annotate src/timer.h @ 91:f83f50c17c3b
continuing with the fs
added strtol and strstr to klibc
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Fri, 09 Dec 2011 15:29:54 +0200 |
parents | 0be4615594df |
children |
rev | line source |
---|---|
nuclear@33 | 1 #ifndef _TIMER_H_ |
nuclear@33 | 2 #define _TIMER_H_ |
nuclear@33 | 3 |
nuclear@33 | 4 unsigned long nticks; |
nuclear@33 | 5 |
nuclear@33 | 6 void init_timer(void); |
nuclear@33 | 7 |
nuclear@72 | 8 int sys_sleep(int sec); |
nuclear@56 | 9 void sleep(unsigned long msec); |
nuclear@51 | 10 |
nuclear@33 | 11 #endif /* _TIMER_H_ */ |