kern

view src/timer.h @ 80:4db99a52863e

fixed the "endianess" of the text messages in the ATA identify info block. this is the first time I've seen wrong byteorder in ascii text, the ATA committee should be commended.
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 06 Dec 2011 13:35:39 +0200
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_ */