kern

view src/timer.h @ 76:0fe6eef16335

holy fuck, copy_on_write didn't actually do the copy!!!!
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 05 Nov 2011 04:53:46 +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_ */