time.h 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. /*****************************************************************************/
  2. /* time.h v8.2.2 */
  3. /* */
  4. /* Copyright (c) 1990-2017 Texas Instruments Incorporated */
  5. /* http://www.ti.com/ */
  6. /* */
  7. /* Redistribution and use in source and binary forms, with or without */
  8. /* modification, are permitted provided that the following conditions */
  9. /* are met: */
  10. /* */
  11. /* Redistributions of source code must retain the above copyright */
  12. /* notice, this list of conditions and the following disclaimer. */
  13. /* */
  14. /* Redistributions in binary form must reproduce the above copyright */
  15. /* notice, this list of conditions and the following disclaimer in */
  16. /* the documentation and/or other materials provided with the */
  17. /* distribution. */
  18. /* */
  19. /* Neither the name of Texas Instruments Incorporated nor the names */
  20. /* of its contributors may be used to endorse or promote products */
  21. /* derived from this software without specific prior written */
  22. /* permission. */
  23. /* */
  24. /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */
  25. /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */
  26. /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */
  27. /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */
  28. /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */
  29. /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */
  30. /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */
  31. /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */
  32. /* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
  33. /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */
  34. /* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
  35. /* */
  36. /*****************************************************************************/
  37. #ifndef _TIME
  38. #define _TIME
  39. #include <linkage.h>
  40. #include <abi_prefix.h>
  41. #ifndef NULL
  42. #define NULL 0
  43. #endif
  44. #ifdef __cplusplus
  45. extern "C" namespace std {
  46. #endif
  47. typedef unsigned int clock_t;
  48. typedef unsigned int __time32_t;
  49. typedef long long __time64_t;
  50. /*---------------------------------------------------------------------------*/
  51. /* The ARM ABI says __aeabi_CLOCKS_PER_SEC is a const int. C99 says that */
  52. /* CLOCKS_PER_SEC is a constant of type clock_t. Therefore on ARM we define */
  53. /* type of __clocks_per_sec_t as int and for all other targets it is clock_t */
  54. /*---------------------------------------------------------------------------*/
  55. typedef clock_t __clocks_per_sec_t;
  56. extern _DATA_ACCESS const __clocks_per_sec_t __TI_P(CLOCKS_PER_SEC);
  57. #ifdef __cplusplus
  58. #define CLOCKS_PER_SEC std::__TI_P(CLOCKS_PER_SEC)
  59. #else
  60. #define CLOCKS_PER_SEC __TI_P(CLOCKS_PER_SEC)
  61. #endif
  62. #if defined(_TARGET_DEFAULTS_TO_TIME64) || \
  63. (defined(__TI_TIME_USES_64) && __TI_TIME_USES_64)
  64. typedef __time64_t time_t;
  65. #else
  66. typedef __time32_t time_t;
  67. #endif
  68. #ifndef _SIZE_T
  69. #define _SIZE_T
  70. typedef __SIZE_T_TYPE__ size_t;
  71. #endif
  72. struct tm
  73. {
  74. int tm_sec; /* seconds after the minute - [0,59] */
  75. int tm_min; /* minutes after the hour - [0,59] */
  76. int tm_hour; /* hours after the midnight - [0,23] */
  77. int tm_mday; /* day of the month - [1,31] */
  78. int tm_mon; /* months since January - [0,11] */
  79. int tm_year; /* years since 1900 */
  80. int tm_wday; /* days since Sunday - [0,6] */
  81. int tm_yday; /* days since Jan 1st - [0,365] */
  82. int tm_isdst; /* Daylight Savings Time flag */
  83. };
  84. /*************************************************************************/
  85. /* TIME ZONE STRUCTURE DEFINITION */
  86. /*************************************************************************/
  87. typedef struct
  88. {
  89. short daylight;
  90. long timezone; /* seconds WEST of UTC. Strange but traditional */
  91. char tzname[4];
  92. char dstname[4];
  93. } TZ;
  94. extern _DATA_ACCESS TZ _tz;
  95. /****************************************************************************/
  96. /* FUNCTION DECLARATIONS. (NOTE : clock AND time ARE SYSTEM SPECIFIC) */
  97. /****************************************************************************/
  98. _CODE_ACCESS clock_t clock(void);
  99. _CODE_ACCESS __time32_t __time32(__time32_t *_timer);
  100. _CODE_ACCESS __time32_t __mktime32(struct tm *_tptr);
  101. _CODE_ACCESS double __difftime32(__time32_t _time1, __time32_t _time0);
  102. _IDECL char *__ctime32(const __time32_t *_timer);
  103. _CODE_ACCESS struct tm *__gmtime32(const __time32_t *_timer);
  104. _CODE_ACCESS struct tm *__localtime32(const __time32_t *_timer);
  105. _CODE_ACCESS __time64_t __time64(__time64_t *_timer);
  106. _CODE_ACCESS __time64_t __mktime64(struct tm *_tptr);
  107. _CODE_ACCESS double __difftime64(__time64_t _time1, __time64_t _time0);
  108. _IDECL char *__ctime64(const __time64_t *_timer);
  109. _CODE_ACCESS struct tm *__gmtime64(const __time64_t *_timer);
  110. _CODE_ACCESS struct tm *__localtime64(const __time64_t *_timer);
  111. _CODE_ACCESS char *asctime(const struct tm *_timeptr);
  112. _CODE_ACCESS size_t strftime(char * __restrict _out, size_t _maxsize,
  113. const char * __restrict _format,
  114. const struct tm * __restrict _timeptr);
  115. #if defined(_INLINE) || defined(_CTIME32_IMPLEMENTATION)
  116. _IDEFN char *__ctime32(const __time32_t *timer)
  117. {
  118. return asctime(__localtime32(timer));
  119. }
  120. #endif /* _INLINE || _CTIME32_IMPLEMENTATION */
  121. #if defined(_INLINE) || defined(_CTIME64_IMPLEMENTATION)
  122. _IDEFN char *__ctime64(const __time64_t *timer)
  123. {
  124. return asctime(__localtime64(timer));
  125. }
  126. #endif /* _INLINE || _CTIME64_IMPLEMENTATION */
  127. /*-----------------------------------------------------------------------*/
  128. /* The user may define __TI_TIME_USES_64=1 to redirects all time */
  129. /* functions to time64 functions. */
  130. /*-----------------------------------------------------------------------*/
  131. #if defined(_TIME_IMPLEMENTATION) && defined(__TI_TIME_USES_64) && __TI_TIME_USES_64
  132. #error "Do not build the RTS with __TI_TIME_USES_64 set"
  133. #elif defined(__TI_TIME_USES_64) && __TI_TIME_USES_64
  134. static __inline time_t time(time_t *timer) { return __time64(timer); }
  135. static __inline time_t mktime(struct tm *tptr) { return __mktime64(tptr); }
  136. static __inline double difftime(time_t time1, time_t time0) { return __difftime64(time1, time0); }
  137. static __inline char *ctime(const time_t *timer) { return __ctime64(timer); }
  138. static __inline struct tm *gmtime(const time_t *timer) { return __gmtime64(timer); }
  139. static __inline struct tm *localtime(const time_t *timer) { return __localtime64(timer); }
  140. #else
  141. _CODE_ACCESS time_t time(time_t *_timer);
  142. _CODE_ACCESS time_t mktime(struct tm *_tptr);
  143. _CODE_ACCESS double difftime(time_t _time1, time_t _time0);
  144. _IDECL char *ctime(const time_t *_timer);
  145. _CODE_ACCESS struct tm *gmtime(const time_t *_timer);
  146. _CODE_ACCESS struct tm *localtime(const time_t *_timer);
  147. #if defined(_INLINE) && !defined(_TIME_IMPLEMENTATION)
  148. _IDEFN char *ctime(const time_t *timer)
  149. {
  150. return asctime(localtime(timer));
  151. }
  152. #endif /* _INLINE */
  153. #endif
  154. #ifdef __cplusplus
  155. } /* extern "C" */
  156. #endif /* __cplusplus */
  157. #endif /* _TIME */
  158. #if defined(__cplusplus) && !defined(_CPP_STYLE_HEADER)
  159. using std::size_t;
  160. using std::clock_t;
  161. using std::clock;
  162. using std::tm;
  163. using std::TZ;
  164. using std::_tz;
  165. using std::__time32_t;
  166. using std::__time64_t;
  167. using std::__time32;
  168. using std::__time64;
  169. using std::__ctime32;
  170. using std::__ctime64;
  171. using std::__difftime32;
  172. using std::__difftime64;
  173. using std::__gmtime32;
  174. using std::__gmtime64;
  175. using std::__localtime32;
  176. using std::__localtime64;
  177. using std::__mktime32;
  178. using std::__mktime64;
  179. using std::time_t;
  180. using std::time;
  181. using std::ctime;
  182. using std::difftime;
  183. using std::gmtime;
  184. using std::localtime;
  185. using std::mktime;
  186. using std::asctime;
  187. using std::strftime;
  188. #endif /* ! _CPP_STYLE_HEADER */