timex.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

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. #endif