timex.h 170 B

1234567891011121314
  1. #ifndef __UM_TIMEX_H
  2. #define __UM_TIMEX_H
  3. typedef unsigned long cycles_t;
  4. static inline cycles_t get_cycles (void)
  5. {
  6. return 0;
  7. }
  8. #define CLOCK_TICK_RATE (HZ)
  9. #endif