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

MySQL数据库

开发平台:

Visual C++

  1. /* $NetBSD: time.h,v 1.17 1996/02/01 00:10:36 jtc Exp $ */
  2. /*
  3.  * Copyright (c) 1982, 1986, 1993
  4.  * The Regents of the University of California.  All rights reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 1. Redistributions of source code must retain the above copyright
  10.  *    notice, this list of conditions and the following disclaimer.
  11.  * 2. Redistributions in binary form must reproduce the above copyright
  12.  *    notice, this list of conditions and the following disclaimer in the
  13.  *    documentation and/or other materials provided with the distribution.
  14.  * 3. All advertising materials mentioning features or use of this software
  15.  *    must display the following acknowledgement:
  16.  * This product includes software developed by the University of
  17.  * California, Berkeley and its contributors.
  18.  * 4. Neither the name of the University nor the names of its contributors
  19.  *    may be used to endorse or promote products derived from this software
  20.  *    without specific prior written permission.
  21.  *
  22.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  23.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  26.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  27.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  28.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  29.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  30.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  31.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  32.  * SUCH DAMAGE.
  33.  *
  34.  * @(#)time.h 8.2 (Berkeley) 7/10/94
  35.  */
  36. #ifndef _SYS_TIME_H_
  37. #define _SYS_TIME_H_
  38. #include <sys/types.h>
  39. /*
  40.  * Structure returned by gettimeofday(2) system call,
  41.  * and used in other calls.
  42.  */
  43. struct timeval {
  44. long tv_sec; /* seconds */
  45. long tv_usec; /* and microseconds */
  46. };
  47. /*
  48.  * Structure defined by POSIX.1b to be like a timeval.
  49.  */
  50. struct timespec {
  51. time_t tv_sec; /* seconds */
  52. long tv_nsec; /* and nanoseconds */
  53. };
  54. #define TIMEVAL_TO_TIMESPEC(tv, ts) {
  55. (ts)->tv_sec = (tv)->tv_sec;
  56. (ts)->tv_nsec = (tv)->tv_usec * 1000;
  57. }
  58. #define TIMESPEC_TO_TIMEVAL(tv, ts) {
  59. (tv)->tv_sec = (ts)->tv_sec;
  60. (tv)->tv_usec = (ts)->tv_nsec / 1000;
  61. }
  62. struct timezone {
  63. int tz_minuteswest; /* minutes west of Greenwich */
  64. int tz_dsttime; /* type of dst correction */
  65. };
  66. #define DST_NONE 0 /* not on dst */
  67. #define DST_USA 1 /* USA style dst */
  68. #define DST_AUST 2 /* Australian style dst */
  69. #define DST_WET 3 /* Western European dst */
  70. #define DST_MET 4 /* Middle European dst */
  71. #define DST_EET 5 /* Eastern European dst */
  72. #define DST_CAN 6 /* Canada */
  73. /* Operations on timevals. */
  74. #define timerclear(tvp) (tvp)->tv_sec = (tvp)->tv_usec = 0
  75. #define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec)
  76. #define timercmp(tvp, uvp, cmp)
  77. (((tvp)->tv_sec == (uvp)->tv_sec) ?
  78.     ((tvp)->tv_usec cmp (uvp)->tv_usec) :
  79.     ((tvp)->tv_sec cmp (uvp)->tv_sec))
  80. #define timeradd(tvp, uvp, vvp)
  81. do {
  82. (vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec;
  83. (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec;
  84. if ((vvp)->tv_usec >= 1000000) {
  85. (vvp)->tv_sec++;
  86. (vvp)->tv_usec -= 1000000;
  87. }
  88. } while (0)
  89. #define timersub(tvp, uvp, vvp)
  90. do {
  91. (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec;
  92. (vvp)->tv_usec = (tvp)->tv_usec - (uvp)->tv_usec;
  93. if ((vvp)->tv_usec < 0) {
  94. (vvp)->tv_sec--;
  95. (vvp)->tv_usec += 1000000;
  96. }
  97. } while (0)
  98. /*
  99.  * Names of the interval timers, and structure
  100.  * defining a timer setting.
  101.  */
  102. #define ITIMER_REAL 0
  103. #define ITIMER_VIRTUAL 1
  104. #define ITIMER_PROF 2
  105. struct itimerval {
  106. struct timeval it_interval; /* timer interval */
  107. struct timeval it_value; /* current value */
  108. };
  109. /*
  110.  * Getkerninfo clock information structure
  111.  */
  112. struct clockinfo {
  113. int hz; /* clock frequency */
  114. int tick; /* micro-seconds per hz tick */
  115. int tickadj; /* clock skew rate for adjtime() */
  116. int stathz; /* statistics clock frequency */
  117. int profhz; /* profiling clock frequency */
  118. };
  119. #ifdef _KERNEL
  120. int itimerfix __P_((struct timeval *tv));
  121. int itimerdecr __P_((struct itimerval *itp, int usec));
  122. void microtime __P_((struct timeval *tv));
  123. #else /* !_KERNEL */
  124. #include <time.h>
  125. #ifndef _POSIX_SOURCE
  126. #include <sys/cdefs.h>
  127. __BEGIN_DECLS
  128. int adjtime __P_((const struct timeval *, struct timeval *));
  129. int getitimer __P_((int, struct itimerval *));
  130. int gettimeofday __P_((struct timeval *, struct timezone *));
  131. int setitimer __P_((int, const struct itimerval *, struct itimerval *));
  132. int settimeofday __P_((const struct timeval *, const struct timezone *));
  133. int utimes __P_((const char *, const struct timeval *));
  134. __END_DECLS
  135. #endif /* !POSIX */
  136. #endif /* !_KERNEL */
  137. #endif /* !_SYS_TIME_H_ */