Linux-2.3.3 and a short hiatus..
[davej-history.git] / include / asm-alpha / timex.h
blob2576553b348ec1890d1619e5de9b555750e31f3d
1 /*
2 * linux/include/asm-alpha/timex.h
4 * ALPHA architecture timex specifications
5 */
6 #ifndef _ASMALPHA_TIMEX_H
7 #define _ASMALPHA_TIMEX_H
9 #define CLOCK_TICK_RATE 1193180 /* Underlying HZ */
12 * Standard way to access the cycle counter.
13 * Currently only used on SMP for scheduling.
15 * Only the low 32 bits are available as a continuously counting entity.
16 * But this only means we'll force a reschedule every 8 seconds or so,
17 * which isn't an evil thing.
20 typedef unsigned int cycles_t;
21 extern cycles_t cacheflush_time;
23 static inline cycles_t get_cycles (void)
25 cycles_t ret;
26 __asm__ __volatile__ ("rpcc %0" : "=r"(ret));
27 return ret;
30 #endif