__time.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #include <pthread/types.h>
  2. #include <machine/machtime.h> /* CLOCKS_PER_SEC is defined here */
  3. #ifndef _SIZE_T
  4. #define _SIZE_T
  5. typedef pthread_size_t size_t;
  6. #endif
  7. #ifndef _CLOCK_T
  8. #define _CLOCK_T
  9. typedef pthread_clock_t clock_t;
  10. #endif
  11. #ifndef _TIME_T
  12. #define _TIME_T
  13. typedef pthread_time_t time_t;
  14. #endif
  15. #ifndef CLK_TCK
  16. #define CLK_TCK 60
  17. #endif