kern

view src/timer.h @ 56:0be4615594df

finally, runqueues, blocking, waking up, idle loop etc, all seem to work fine on a single user process... Next up: try forking another one :)
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 15 Aug 2011 06:17:58 +0300
parents b1e8c8251884
children 3941e82b07f2
line source
1 #ifndef _TIMER_H_
2 #define _TIMER_H_
4 unsigned long nticks;
6 void init_timer(void);
8 void sleep(unsigned long msec);
10 #endif /* _TIMER_H_ */