timex.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

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