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

MySQL数据库

开发平台:

Visual C++

  1. /* @(#)time.h 2.12 91/05/22 SMI; from UCB 7.1 6/4/86 */
  2. /*
  3.  * Copyright (c) 1982, 1986 Regents of the University of California.
  4.  * All rights reserved.  The Berkeley software License Agreement
  5.  * specifies the terms and conditions for redistribution.
  6.  */
  7. #ifndef _SYS_TIME_H_
  8. #define _SYS_TIME_H_
  9. #include <sys/cdefs.h>
  10. /*
  11.  * Structure returned by gettimeofday(2) system call,
  12.  * and used in other calls.
  13.  */
  14. struct timeval {
  15. long tv_sec; /* seconds */
  16. long tv_usec; /* and microseconds */
  17. };
  18. struct timezone {
  19. int tz_minuteswest; /* minutes west of Greenwich */
  20. int tz_dsttime; /* type of dst correction */
  21. };
  22. #define DST_NONE 0 /* not on dst */
  23. #define DST_USA 1 /* USA style dst */
  24. #define DST_AUST 2 /* Australian style dst */
  25. #define DST_WET 3 /* Western European dst */
  26. #define DST_MET 4 /* Middle European dst */
  27. #define DST_EET 5 /* Eastern European dst */
  28. #define DST_CAN 6 /* Canada */
  29. #define DST_GB 7 /* Great Britain and Eire */
  30. #define DST_RUM 8 /* Rumania */
  31. #define DST_TUR 9 /* Turkey */
  32. #define DST_AUSTALT 10 /* Australian style with shift in 1986 */
  33. /*
  34.  * Operations on timevals.
  35.  *
  36.  * NB: timercmp does not work for >= or <=.
  37.  */
  38. #define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec)
  39. #define timercmp(tvp, uvp, cmp)
  40. ((tvp)->tv_sec cmp (uvp)->tv_sec || 
  41.  (tvp)->tv_sec == (uvp)->tv_sec && (tvp)->tv_usec cmp (uvp)->tv_usec)
  42. #define timerclear(tvp) (tvp)->tv_sec = (tvp)->tv_usec = 0
  43. /*
  44.  * Names of the interval timers, and structure
  45.  * defining a timer setting.
  46.  */
  47. #define ITIMER_REAL 0
  48. #define ITIMER_VIRTUAL 1
  49. #define ITIMER_PROF 2
  50. struct itimerval {
  51. struct timeval it_interval; /* timer interval */
  52. struct timeval it_value; /* current value */
  53. };
  54. __BEGIN_DECLS
  55. int     gettimeofday             __P_((struct timeval *, struct timezone *));
  56. __END_DECLS
  57. #endif