Add memtest support.
[syslinux-debian/hramrach.git] / core / include / timer.h
blob1d66ba7303b32314bd0b9bad7c270de3ccab0075
1 #ifndef TIMER_H
2 #define TIMER_H
4 /*
5 * Basic timer function...
6 */
7 typedef uint32_t jiffies_t;
8 extern volatile jiffies_t __jiffies, __ms_timer;
9 static inline jiffies_t jiffies(void)
11 return __jiffies;
14 typedef uint32_t mstime_t;
15 typedef int32_t mstimediff_t;
16 static inline mstime_t ms_timer(void)
18 return __ms_timer;
21 #endif /* TIMER_H */