time.h 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /* Copyright (C) 1991-1994,1996-2003,2005,2006,2009
  2. Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef _SYS_TIME_H
  16. #define _SYS_TIME_H 1
  17. #include <features.h>
  18. #include <bits/types.h>
  19. #define __need_time_t
  20. #include <time.h>
  21. #define __need_timeval
  22. #include <bits/time.h>
  23. #include <sys/select.h>
  24. #ifndef __suseconds_t_defined
  25. typedef __suseconds_t suseconds_t;
  26. # define __suseconds_t_defined
  27. #endif
  28. __BEGIN_DECLS
  29. #ifdef __USE_GNU
  30. /* Macros for converting between `struct timeval' and `struct timespec'. */
  31. # define TIMEVAL_TO_TIMESPEC(tv, ts) { \
  32. (ts)->tv_sec = (tv)->tv_sec; \
  33. (ts)->tv_nsec = (tv)->tv_usec * 1000; \
  34. }
  35. # define TIMESPEC_TO_TIMEVAL(tv, ts) { \
  36. (tv)->tv_sec = (ts)->tv_sec; \
  37. (tv)->tv_usec = (ts)->tv_nsec / 1000; \
  38. }
  39. #endif
  40. #ifdef __USE_BSD
  41. /* Structure crudely representing a timezone.
  42. This is obsolete and should never be used. */
  43. struct timezone
  44. {
  45. int tz_minuteswest; /* Minutes west of GMT. */
  46. int tz_dsttime; /* Nonzero if DST is ever in effect. */
  47. };
  48. typedef struct timezone *__restrict __timezone_ptr_t;
  49. #else
  50. typedef void *__restrict __timezone_ptr_t;
  51. #endif
  52. /* Get the current time of day and timezone information,
  53. putting it into *TV and *TZ. If TZ is NULL, *TZ is not filled.
  54. Returns 0 on success, -1 on errors.
  55. NOTE: This form of timezone information is obsolete.
  56. Use the functions and variables declared in <time.h> instead. */
  57. extern int gettimeofday (struct timeval *__restrict __tv,
  58. __timezone_ptr_t __tz) __THROW __nonnull ((1));
  59. libc_hidden_proto(gettimeofday)
  60. #ifdef __USE_BSD
  61. /* Set the current time of day and timezone information.
  62. This call is restricted to the super-user. */
  63. extern int settimeofday (const struct timeval *__tv,
  64. const struct timezone *__tz)
  65. __THROW;
  66. libc_hidden_proto(settimeofday)
  67. /* Adjust the current time of day by the amount in DELTA.
  68. If OLDDELTA is not NULL, it is filled in with the amount
  69. of time adjustment remaining to be done from the last `adjtime' call.
  70. This call is restricted to the super-user. */
  71. extern int adjtime (const struct timeval *__delta,
  72. struct timeval *__olddelta) __THROW;
  73. #endif
  74. /* Values for the first argument to `getitimer' and `setitimer'. */
  75. enum __itimer_which
  76. {
  77. /* Timers run in real time. */
  78. ITIMER_REAL = 0,
  79. #define ITIMER_REAL ITIMER_REAL
  80. /* Timers run only when the process is executing. */
  81. ITIMER_VIRTUAL = 1,
  82. #define ITIMER_VIRTUAL ITIMER_VIRTUAL
  83. /* Timers run when the process is executing and when
  84. the system is executing on behalf of the process. */
  85. ITIMER_PROF = 2
  86. #define ITIMER_PROF ITIMER_PROF
  87. };
  88. /* Type of the second argument to `getitimer' and
  89. the second and third arguments `setitimer'. */
  90. struct itimerval
  91. {
  92. /* Value to put into `it_value' when the timer expires. */
  93. struct timeval it_interval;
  94. /* Time to the next timer expiration. */
  95. struct timeval it_value;
  96. };
  97. #if defined __USE_GNU && !defined __cplusplus
  98. /* Use the nicer parameter type only in GNU mode and not for C++ since the
  99. strict C++ rules prevent the automatic promotion. */
  100. typedef enum __itimer_which __itimer_which_t;
  101. #else
  102. typedef int __itimer_which_t;
  103. #endif
  104. /* Set *VALUE to the current setting of timer WHICH.
  105. Return 0 on success, -1 on errors. */
  106. extern int getitimer (__itimer_which_t __which,
  107. struct itimerval *__value) __THROW;
  108. /* Set the timer WHICH to *NEW. If OLD is not NULL,
  109. set *OLD to the old value of timer WHICH.
  110. Returns 0 on success, -1 on errors. */
  111. extern int setitimer (__itimer_which_t __which,
  112. const struct itimerval *__restrict __new,
  113. struct itimerval *__restrict __old) __THROW;
  114. libc_hidden_proto(setitimer)
  115. /* Change the access time of FILE to TVP[0] and the modification time of
  116. FILE to TVP[1]. If TVP is a null pointer, use the current time instead.
  117. Returns 0 on success, -1 on errors. */
  118. extern int utimes (const char *__file, const struct timeval __tvp[2])
  119. __THROW __nonnull ((1));
  120. libc_hidden_proto(utimes)
  121. #ifdef __USE_BSD
  122. /* Same as `utimes', but does not follow symbolic links. */
  123. extern int lutimes (const char *__file, const struct timeval __tvp[2])
  124. __THROW __nonnull ((1));
  125. #if 0
  126. /* Same as `utimes', but takes an open file descriptor instead of a name. */
  127. extern int futimes (int __fd, const struct timeval __tvp[2]) __THROW;
  128. #endif
  129. #endif
  130. #ifdef __USE_GNU
  131. /* Change the access time of FILE relative to FD to TVP[0] and the
  132. modification time of FILE to TVP[1]. If TVP is a null pointer, use
  133. the current time instead. Returns 0 on success, -1 on errors. */
  134. extern int futimesat (int __fd, const char *__file,
  135. const struct timeval __tvp[2]) __THROW;
  136. #endif
  137. #ifdef __USE_BSD
  138. /* Convenience macros for operations on timevals.
  139. NOTE: `timercmp' does not work for >= or <=. */
  140. # define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec)
  141. # define timerclear(tvp) ((tvp)->tv_sec = (tvp)->tv_usec = 0)
  142. # define timercmp(a, b, CMP) \
  143. (((a)->tv_sec == (b)->tv_sec) ? \
  144. ((a)->tv_usec CMP (b)->tv_usec) : \
  145. ((a)->tv_sec CMP (b)->tv_sec))
  146. # define timeradd(a, b, result) \
  147. do { \
  148. (result)->tv_sec = (a)->tv_sec + (b)->tv_sec; \
  149. (result)->tv_usec = (a)->tv_usec + (b)->tv_usec; \
  150. if ((result)->tv_usec >= 1000000) \
  151. { \
  152. ++(result)->tv_sec; \
  153. (result)->tv_usec -= 1000000; \
  154. } \
  155. } while (0)
  156. # define timersub(a, b, result) \
  157. do { \
  158. (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
  159. (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
  160. if ((result)->tv_usec < 0) { \
  161. --(result)->tv_sec; \
  162. (result)->tv_usec += 1000000; \
  163. } \
  164. } while (0)
  165. #endif /* BSD */
  166. __END_DECLS
  167. #endif /* sys/time.h */