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

MySQL数据库

开发平台:

Visual C++

  1. /* $NetBSD: time.h,v 1.8 1994/06/29 06:45:44 cgd 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.1 (Berkeley) 6/2/93
  35.  */
  36. #ifndef _SYS_TIME_H_
  37. #define _SYS_TIME_H_
  38. /*
  39.  * Structure returned by gettimeofday(2) system call,
  40.  * and used in other calls.
  41.  */
  42. struct timeval {
  43. long tv_sec; /* seconds */
  44. long tv_usec; /* and microseconds */
  45. };
  46. /*
  47.  * Structure defined by POSIX.4 to be like a timeval.
  48.  */
  49. struct timespec {
  50. long tv_sec; /* seconds */
  51. long tv_nsec; /* and nanoseconds */
  52. };
  53. #define TIMEVAL_TO_TIMESPEC(tv, ts) {
  54. (ts)->tv_sec = (tv)->tv_sec;
  55. (ts)->tv_nsec = (tv)->tv_usec * 1000;
  56. }
  57. #define TIMESPEC_TO_TIMEVAL(tv, ts) {
  58. (tv)->tv_sec = (ts)->tv_sec;
  59. (tv)->tv_usec = (ts)->tv_nsec / 1000;
  60. }
  61. struct timezone {
  62. int tz_minuteswest; /* minutes west of Greenwich */
  63. int tz_dsttime; /* type of dst correction */
  64. };
  65. #define DST_NONE 0 /* not on dst */
  66. #define DST_USA 1 /* USA style dst */
  67. #define DST_AUST 2 /* Australian style dst */
  68. #define DST_WET 3 /* Western European dst */
  69. #define DST_MET 4 /* Middle European dst */
  70. #define DST_EET 5 /* Eastern European dst */
  71. #define DST_CAN 6 /* Canada */
  72. /* Operations on timevals. */
  73. #define timerclear(tvp) (tvp)->tv_sec = (tvp)->tv_usec = 0
  74. #define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec)
  75. #define timercmp(tvp, uvp, cmp)
  76. (((tvp)->tv_sec == (uvp)->tv_sec) ?
  77.     ((tvp)->tv_usec cmp (uvp)->tv_usec) :
  78.     ((tvp)->tv_sec cmp (uvp)->tv_sec))
  79. /*
  80.  * Names of the interval timers, and structure
  81.  * defining a timer setting.
  82.  */
  83. #define ITIMER_REAL 0
  84. #define ITIMER_VIRTUAL 1
  85. #define ITIMER_PROF 2
  86. struct itimerval {
  87. struct timeval it_interval; /* timer interval */
  88. struct timeval it_value; /* current value */
  89. };
  90. /*
  91.  * Getkerninfo clock information structure
  92.  */
  93. struct clockinfo {
  94. int hz; /* clock frequency */
  95. int tick; /* micro-seconds per hz tick */
  96. int stathz; /* statistics clock frequency */
  97. int profhz; /* profiling clock frequency */
  98. };
  99. #include <time.h>
  100. #ifndef _POSIX_SOURCE
  101. #include <sys/cdefs.h>
  102. __BEGIN_DECLS
  103. int adjtime __P_((const struct timeval *, struct timeval *));
  104. int getitimer __P_((int, struct itimerval *));
  105. int gettimeofday __P_((struct timeval *, struct timezone *));
  106. int setitimer __P_((int, const struct itimerval *, struct itimerval *));
  107. int settimeofday __P_((const struct timeval *, const struct timezone *));
  108. int utimes __P_((const char *, const struct timeval *));
  109. __END_DECLS
  110. #endif /* !POSIX */
  111. #endif /* !_SYS_TIME_H_ */