forked from picolibc/picolibc
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtime.h
312 lines (230 loc) · 7.7 KB
/
time.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
/*
Copyright (c) 1991, 1993
The Regents of the University of California. All rights reserved.
c) UNIX System Laboratories, Inc.
All or some portions of this file are derived from material licensed
to the University of California by American Telephone and Telegraph
Co. or Unix System Laboratories, Inc. and are reproduced herein with
the permission of UNIX System Laboratories, Inc.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the University nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
*/
/*
* time.h
*
* Struct and function declarations for dealing with time.
*/
#ifndef _TIME_H_
#define _TIME_H_
#include <sys/cdefs.h>
#define __need_size_t
#define __need_NULL
#include <stddef.h>
#include <sys/_types.h>
#include <sys/_timespec.h>
_BEGIN_STD_C
#ifndef _CLOCKS_PER_SEC_
#define _CLOCKS_PER_SEC_ 1000000
#endif
#ifndef CLOCKS_PER_SEC
#define CLOCKS_PER_SEC _CLOCKS_PER_SEC_
#endif
#ifndef TIME_UTC
#define TIME_UTC 1
#endif
#ifndef _CLOCK_T_DECLARED
typedef _CLOCK_T_ clock_t;
#define _CLOCK_T_DECLARED
#endif
struct tm
{
int tm_sec;
int tm_min;
int tm_hour;
int tm_mday;
int tm_mon;
int tm_year;
int tm_wday;
int tm_yday;
int tm_isdst;
#ifdef __TM_GMTOFF
long __TM_GMTOFF;
#endif
#ifdef __TM_ZONE
const char *__TM_ZONE;
#endif
};
#if __POSIX_VISIBLE
#ifndef CLK_TCK
#define CLK_TCK CLOCKS_PER_SEC
#endif
/* Flag indicating time is "absolute" with respect to the clock
associated with a time. Value 4 is historic. */
#define TIMER_ABSTIME 4
#include <sys/_locale.h>
#ifndef _CLOCKID_T_DECLARED
typedef __clockid_t clockid_t;
#define _CLOCKID_T_DECLARED
#endif
#ifndef _TIMER_T_DECLARED
typedef __timer_t timer_t;
#define _TIMER_T_DECLARED
#endif
/*
* Structure defined by POSIX.1b to be like a itimerval, but with
* timespecs. Used in the timer_*() system calls.
*/
struct itimerspec {
struct timespec it_interval;
struct timespec it_value;
};
#endif
#if __GNU_VISIBLE
#define CLOCK_REALTIME_COARSE (0)
#endif
#define CLOCK_REALTIME (1)
/* Manifest Constants, P1003.4b/D8, p. 55 */
#if defined(_POSIX_CPUTIME)
/* When used in a clock or timer function call, this is interpreted as
the identifier of the CPU_time clock associated with the PROCESS
making the function call. */
#define CLOCK_PROCESS_CPUTIME_ID (2)
#endif
#if defined(_POSIX_THREAD_CPUTIME)
/* When used in a clock or timer function call, this is interpreted as
the identifier of the CPU_time clock associated with the THREAD
making the function call. */
#define CLOCK_THREAD_CPUTIME_ID (3)
#endif
#if defined(_POSIX_MONOTONIC_CLOCK)
/* The identifier for the system-wide monotonic clock, which is defined
* as a clock whose value cannot be set via clock_settime() and which
* cannot have backward clock jumps. */
#define CLOCK_MONOTONIC (4)
#endif
#if __GNU_VISIBLE
#define CLOCK_MONOTONIC_RAW (5)
#define CLOCK_MONOTONIC_COARSE (6)
#define CLOCK_BOOTTIME (7)
#define CLOCK_REALTIME_ALARM (8)
#define CLOCK_BOOTTIME_ALARM (9)
#endif
/* defines for the opengroup specifications Derived from Issue 1 of the SVID. */
#if __SVID_VISIBLE || __XSI_VISIBLE
extern long _timezone;
extern int _daylight;
#endif
#if __POSIX_VISIBLE
extern char *tzname[2];
#endif /* __POSIX_VISIBLE */
char *asctime (const struct tm *_tblock);
#if __POSIX_VISIBLE
#define __ASCTIME_SIZE 26
char *asctime_r (const struct tm *__restrict,
char [__restrict_arr __min_size(__ASCTIME_SIZE)]);
#endif
clock_t clock (void);
#if defined(_POSIX_CPUTIME)
int clock_getcpuclockid (pid_t pid, clockid_t *clock_id);
#endif /* _POSIX_CPUTIME */
#if __POSIX_VISIBLE
int clock_getres (clockid_t clock_id, struct timespec *res);
int clock_gettime (clockid_t clock_id, struct timespec *tp);
int clock_nanosleep (clockid_t clock_id, int flags,
const struct timespec *rqtp,
struct timespec *rmtp);
int clock_settime (clockid_t clock_id, const struct timespec *tp);
#endif
char *ctime (const time_t *_time);
#if __POSIX_VISIBLE
char *ctime_r (const time_t *,
char [__restrict_arr __min_size(__ASCTIME_SIZE)]);
#endif
double difftime (time_t _time2, time_t _time1);
#if __XSI_VISIBLE >= 4
struct tm *getdate (const char *);
#endif /* __XSI_VISIBLE >= 4 */
#if __GNU_VISIBLE
extern int getdate_err;
int getdate_r (const char *, struct tm *);
#endif /* __GNU_VISIBLE */
struct tm *gmtime (const time_t *_timer);
#if __POSIX_VISIBLE || __ZEPHYR_VISIBLE
struct tm *gmtime_r (const time_t *__restrict,
struct tm *__restrict);
#endif
struct tm *localtime (const time_t *_timer);
#if __POSIX_VISIBLE
struct tm *localtime_r (const time_t *__restrict,
struct tm *__restrict);
#endif
time_t mktime (struct tm *_timeptr);
int nanosleep (const struct timespec *rqtp, struct timespec *rmtp);
size_t strftime (char *__restrict _s,
size_t _maxsize, const char *__restrict _fmt,
const struct tm *__restrict _t);
int timespec_get(struct timespec *_ts, int _base);
#if __POSIX_VISIBLE
size_t strftime_l (char *__restrict _s, size_t _maxsize,
const char *__restrict _fmt,
const struct tm *__restrict _t, locale_t _l);
#endif
#if __XSI_VISIBLE
char *strptime (const char *__restrict,
const char *__restrict,
struct tm *__restrict);
#endif
#if __GNU_VISIBLE
char *strptime_l (const char *__restrict, const char *__restrict,
struct tm *__restrict, locale_t);
#endif
time_t time (time_t *_timer);
#if __BSD_VISIBLE || __SVID_VISIBLE || __GNU_VISIBLE
time_t timegm (struct tm *_timeptr);
#endif
#if __POSIX_VISIBLE
struct sigevent;
int timer_create (clockid_t clock_id,
struct sigevent *__restrict evp,
timer_t *__restrict timerid);
int timer_delete (timer_t timerid);
int timer_getoverrun (timer_t timerid);
int timer_gettime (timer_t timerid, struct itimerspec *value);
int timer_settime (timer_t timerid, int flags,
const struct itimerspec *__restrict value,
struct itimerspec *__restrict ovalue);
#endif
void tzset (void);
#if __STDC_WANT_LIB_EXT1__ == 1
#include <sys/_types.h>
#ifndef _ERRNO_T_DEFINED
typedef __errno_t errno_t;
#define _ERRNO_T_DEFINED
#endif
#ifndef _RSIZE_T_DEFINED
typedef __rsize_t rsize_t;
#define _RSIZE_T_DEFINED
#endif
#endif
_END_STD_C
#endif /* _TIME_H_ */