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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-parisc/timex.h
  3.  *
  4.  * PARISC architecture timex specifications
  5.  */
  6. #ifndef _ASMPARISC_TIMEX_H
  7. #define _ASMPARISC_TIMEX_H
  8. #include <asm/system.h>
  9. #include <linux/time.h>
  10. typedef unsigned long cycles_t;
  11. extern cycles_t cacheflush_time;
  12. static inline cycles_t get_cycles (void)
  13. {
  14. return mfctl(16);
  15. }
  16. #define vxtime_lock() do {} while (0)
  17. #define vxtime_unlock() do {} while (0)
  18. #endif