PageRenderTime 38ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/include/time.h

https://github.com/iriina/DragonFlyBSD
C Header | 176 lines | 103 code | 24 blank | 49 comment | 4 complexity | 812817faa46ebdac65d75eba688effcb MD5 | raw file
  1. /*
  2. * Copyright (c) 1989, 1993
  3. * The Regents of the University of California. All rights reserved.
  4. * (c) UNIX System Laboratories, Inc.
  5. * All or some portions of this file are derived from material licensed
  6. * to the University of California by American Telephone and Telegraph
  7. * Co. or Unix System Laboratories, Inc. and are reproduced herein with
  8. * the permission of UNIX System Laboratories, Inc.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in the
  17. * documentation and/or other materials provided with the distribution.
  18. * 3. All advertising materials mentioning features or use of this software
  19. * must display the following acknowledgement:
  20. * This product includes software developed by the University of
  21. * California, Berkeley and its contributors.
  22. * 4. Neither the name of the University nor the names of its contributors
  23. * may be used to endorse or promote products derived from this software
  24. * without specific prior written permission.
  25. *
  26. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  27. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  28. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  29. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  30. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  31. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  32. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  33. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  34. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  35. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  36. * SUCH DAMAGE.
  37. *
  38. * @(#)time.h 8.3 (Berkeley) 1/21/94
  39. */
  40. #ifndef _TIME_H_
  41. #define _TIME_H_
  42. #include <sys/cdefs.h>
  43. #include <machine/stdint.h>
  44. #include <machine/uvparam.h>
  45. #include <sys/_posix.h>
  46. #if __POSIX_VISIBLE > 0 && __POSIX_VISIBLE < 200112 || __BSD_VISIBLE
  47. /*
  48. * Frequency of the clock ticks reported by times(). Deprecated - use
  49. * sysconf(_SC_CLK_TCK) instead. (Removed in 1003.1-2001.)
  50. */
  51. #define CLK_TCK _BSD_CLK_TCK_
  52. #endif
  53. /* Frequency of the clock ticks reported by clock(). */
  54. #define CLOCKS_PER_SEC _BSD_CLOCKS_PER_SEC_
  55. #include <sys/_null.h>
  56. #ifndef _CLOCK_T_DECLARED
  57. #define _CLOCK_T_DECLARED
  58. typedef __clock_t clock_t;
  59. #endif
  60. #ifndef _TIME_T_DECLARED
  61. #define _TIME_T_DECLARED
  62. typedef __time_t time_t;
  63. #endif
  64. #ifndef _SIZE_T_DECLARED
  65. #define _SIZE_T_DECLARED
  66. typedef __size_t size_t;
  67. #endif
  68. #if __POSIX_VISIBLE >= 199309
  69. /*
  70. * New in POSIX 1003.1b-1993.
  71. */
  72. #ifndef _CLOCKID_T_DECLARED
  73. #define _CLOCKID_T_DECLARED
  74. typedef __clockid_t clockid_t;
  75. #endif
  76. #ifndef _TIMER_T_DECLARED
  77. #define _TIMER_T_DECLARED
  78. typedef __timer_t timer_t;
  79. #endif
  80. #include <sys/_timespec.h>
  81. #endif /* __POSIX_VISIBLE >= 199309 */
  82. /* These macros are also in sys/time.h. */
  83. #if !defined(CLOCK_REALTIME) && __POSIX_VISIBLE >= 200112
  84. #define CLOCK_REALTIME 0
  85. #ifdef __BSD_VISIBLE
  86. #define CLOCK_VIRTUAL 1
  87. #define CLOCK_PROF 2
  88. #endif
  89. #define CLOCK_MONOTONIC 4
  90. #endif /* !defined(CLOCK_REALTIME) && __POSIX_VISIBLE >= 200112 */
  91. #if !defined(TIMER_ABSTIME) && __POSIX_VISIBLE >= 200112
  92. #if __BSD_VISIBLE
  93. #define TIMER_RELTIME 0x0 /* relative timer */
  94. #endif
  95. #define TIMER_ABSTIME 0x1 /* absolute timer */
  96. #endif
  97. struct tm {
  98. int tm_sec; /* seconds after the minute [0-60] */
  99. int tm_min; /* minutes after the hour [0-59] */
  100. int tm_hour; /* hours since midnight [0-23] */
  101. int tm_mday; /* day of the month [1-31] */
  102. int tm_mon; /* months since January [0-11] */
  103. int tm_year; /* years since 1900 */
  104. int tm_wday; /* days since Sunday [0-6] */
  105. int tm_yday; /* days since January 1 [0-365] */
  106. int tm_isdst; /* Daylight Savings Time flag */
  107. long tm_gmtoff; /* offset from CUT in seconds */
  108. char *tm_zone; /* timezone abbreviation */
  109. };
  110. #if __POSIX_VISIBLE
  111. extern char *tzname[];
  112. #endif
  113. __BEGIN_DECLS
  114. char *asctime (const struct tm *);
  115. clock_t clock (void);
  116. char *ctime (const time_t *);
  117. double difftime (time_t, time_t);
  118. struct tm *gmtime (const time_t *);
  119. struct tm *localtime (const time_t *);
  120. time_t mktime (struct tm *);
  121. size_t strftime (char * __restrict, size_t, const char * __restrict,
  122. const struct tm * __restrict);
  123. time_t time (time_t *);
  124. #if __POSIX_VISIBLE
  125. void tzset (void);
  126. #endif
  127. #if __POSIX_VISIBLE >= 199506
  128. char *asctime_r (const struct tm *, char *);
  129. char *ctime_r (const time_t *, char *);
  130. struct tm *gmtime_r (const time_t *, struct tm *);
  131. struct tm *localtime_r (const time_t *, struct tm *);
  132. #endif
  133. #if __POSIX_VISIBLE >= 199309
  134. /* Introduced in POSIX 1003.1b-1993, not part of 1003.1-1990. */
  135. int clock_getres (clockid_t, struct timespec *);
  136. int clock_gettime (clockid_t, struct timespec *);
  137. int clock_settime (clockid_t, const struct timespec *);
  138. int nanosleep (const struct timespec *, struct timespec *);
  139. #endif /* __POSIX_VISIBLE >= 199309 */
  140. #if __XSI_VISIBLE
  141. extern int daylight;
  142. extern long timezone;
  143. char *strptime (const char * __restrict, const char * __restrict,
  144. struct tm * __restrict);
  145. #endif
  146. #if __BSD_VISIBLE
  147. void tzsetwall (void);
  148. time_t timelocal (struct tm * const);
  149. time_t timegm (struct tm * const);
  150. #endif /* __BSD_VISIBLE */
  151. __END_DECLS
  152. #endif /* !_TIME_H_ */