interrupts, timer, keyboard, segments, lots of kernel code
[bootcensus] / src / timer.h
1 #ifndef _TIMER_H_
2 #define _TIMER_H_
3
4 unsigned long nticks;
5
6 void init_timer(void);
7
8 int sys_sleep(int sec);
9 void sleep(unsigned long msec);
10
11 #endif  /* _TIMER_H_ */