VSF Documented
time.h
Go to the documentation of this file.
1#ifndef __SIMPLE_LIBC_TIME_H__
2#define __SIMPLE_LIBC_TIME_H__
3
5
6#if VSF_LINUX_CFG_RELATIVE_PATH == ENABLED
7# if VSF_LINUX_USE_SIMPLE_LIBC == ENABLED
8# include "./stddef.h"
9# else
10# include <stddef.h>
11# endif
12// for time_t
13# include "../sys/types.h"
14// for sigevent
15# include "../signal.h"
16#else
17# include <stddef.h>
18// for time_t
19# include <sys/types.h>
20// for sigevent
21# include <signal.h>
22#endif
23
24// Note:
25// libc/time.h can not include timeval, so can not include sys/time.h,
26// or it will conflict with timeval in winsock.h.
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32#if VSF_LINUX_LIBC_CFG_WRAPPER == ENABLED
33#define clock_gettime VSF_LINUX_LIBC_WRAPPER(clock_gettime)
34#define clock_settime VSF_LINUX_LIBC_WRAPPER(clock_settime)
35#define clock_getres VSF_LINUX_LIBC_WRAPPER(clock_getres)
36#define clock_nanosleep VSF_LINUX_LIBC_WRAPPER(clock_nanosleep)
37#define timer_create VSF_LINUX_LIBC_WRAPPER(timer_create)
38#define timer_settime VSF_LINUX_LIBC_WRAPPER(timer_settime)
39#define timer_gettime VSF_LINUX_LIBC_WRAPPER(timer_gettime)
40#define timer_delete VSF_LINUX_LIBC_WRAPPER(timer_delete)
41#define timer_getoverrun VSF_LINUX_LIBC_WRAPPER(timer_getoverrun)
42#define nanosleep VSF_LINUX_LIBC_WRAPPER(nanosleep)
43#define clock VSF_LINUX_LIBC_WRAPPER(clock)
44#define timespec_get VSF_LINUX_LIBC_WRAPPER(timespec_get)
45#define strftime VSF_LINUX_LIBC_WRAPPER(strftime)
46#define strptime VSF_LINUX_LIBC_WRAPPER(strptime)
47#define tzset VSF_LINUX_LIBC_WRAPPER(tzset)
48#define timegm VSF_LINUX_LIBC_WRAPPER(timegm)
49#endif
50
51#define TIMER_ABSTIME 1
52
53struct tm {
54 int tm_sec;
55 int tm_min;
58 int tm_mon;
63 long int tm_gmtoff;
64 const char *tm_zone;
65};
66
67struct timespec {
69 long tv_nsec;
70};
71
72struct itimerspec {
75};
76
77struct timespec64 {
79 long tv_nsec;
80};
81#ifdef __WIN__
82typedef struct timespec64 _timespec64;
83#endif
84
88};
89
90#if VSF_LINUX_APPLET_USE_LIBC_TIME == ENABLED
93
114
120
124# ifndef __VSF_APPLET__
126# endif
127#endif
128
129#if defined(__VSF_APPLET__) && (defined(__VSF_APPLET_LIB__) || defined(__VSF_APPLET_LINUX_LIBC_TIME_LIB__))\
130 && VSF_APPLET_CFG_ABI_PATCH != ENABLED && VSF_LINUX_APPLET_USE_LIBC_TIME == ENABLED
131
132#ifndef VSF_LINUX_APPLET_LIBC_TIME_VPLT
133# if VSF_LINUX_USE_APPLET == ENABLED
134# define VSF_LINUX_APPLET_LIBC_TIME_VPLT \
135 ((vsf_linux_libc_time_vplt_t *)(VSF_LINUX_APPLET_VPLT->libc_time_vplt))
136# else
137# define VSF_LINUX_APPLET_LIBC_TIME_VPLT \
138 ((vsf_linux_libc_time_vplt_t *)vsf_vplt((void *)0))
139# endif
140#endif
141
142#define VSF_LINUX_APPLET_LIBC_TIME_ENTRY(__NAME) \
143 VSF_APPLET_VPLT_ENTRY_FUNC_ENTRY(VSF_LINUX_APPLET_LIBC_TIME_VPLT, __NAME)
144#define VSF_LINUX_APPLET_LIBC_TIME_IMP(...) \
145 VSF_APPLET_VPLT_ENTRY_FUNC_IMP(VSF_LINUX_APPLET_LIBC_TIME_VPLT, __VA_ARGS__)
146
147VSF_LINUX_APPLET_LIBC_TIME_IMP(clock, clock_t, void) {
149 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(clock)();
150}
151VSF_LINUX_APPLET_LIBC_TIME_IMP(clock_gettime, int, clockid_t clockid, struct timespec *ts) {
153 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(clock_gettime)(clockid, ts);
154}
155VSF_LINUX_APPLET_LIBC_TIME_IMP(clock_settime, int, clockid_t clockid, const struct timespec *ts) {
157 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(clock_settime)(clockid, ts);
158}
159VSF_LINUX_APPLET_LIBC_TIME_IMP(clock_getres, int, clockid_t clockid, struct timespec *res) {
161 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(clock_getres)(clockid, res);
162}
163VSF_LINUX_APPLET_LIBC_TIME_IMP(clock_nanosleep, int, clockid_t clockid, int flags, const struct timespec *request, struct timespec *remain) {
165 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(clock_nanosleep)(clockid, flags, request, remain);
166}
167VSF_LINUX_APPLET_LIBC_TIME_IMP(time, time_t, time_t *t) {
169 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(time)(t);
170}
171VSF_LINUX_APPLET_LIBC_TIME_IMP(difftime, double, time_t time1, time_t time2) {
173 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(difftime)(time1, time2);
174}
175VSF_LINUX_APPLET_LIBC_TIME_IMP(asctime, char *, const struct tm *tm) {
177 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(asctime)(tm);
178}
179VSF_LINUX_APPLET_LIBC_TIME_IMP(asctime_r, char *, const struct tm *tm, char *buf) {
181 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(asctime_r)(tm, buf);
182}
183VSF_LINUX_APPLET_LIBC_TIME_IMP(ctime, char *, const time_t *t) {
185 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(ctime)(t);
186}
187VSF_LINUX_APPLET_LIBC_TIME_IMP(ctime_r, char *, const time_t *t, char *buf) {
189 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(ctime_r)(t, buf);
190}
191VSF_LINUX_APPLET_LIBC_TIME_IMP(gmtime, struct tm *, const time_t *t) {
193 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(gmtime)(t);
194}
195VSF_LINUX_APPLET_LIBC_TIME_IMP(gmtime_r, struct tm *, const time_t *t, struct tm *result) {
197 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(gmtime_r)(t, result);
198}
199VSF_LINUX_APPLET_LIBC_TIME_IMP(localtime, struct tm *, const time_t *t) {
201 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(localtime)(t);
202}
203VSF_LINUX_APPLET_LIBC_TIME_IMP(localtime_r, struct tm *, const time_t *t, struct tm *result) {
205 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(localtime_r)(t, result);
206}
207VSF_LINUX_APPLET_LIBC_TIME_IMP(mktime, time_t, struct tm *tm) {
209 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(mktime)(tm);
210}
211VSF_LINUX_APPLET_LIBC_TIME_IMP(strftime, size_t, char *str, size_t maxsize, const char *format, const struct tm *tm) {
213 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(strftime)(str, maxsize, format, tm);
214}
215VSF_LINUX_APPLET_LIBC_TIME_IMP(strptime, char *, const char *str, const char *format, struct tm *tm) {
217 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(strptime)(str, format, tm);
218}
219VSF_LINUX_APPLET_LIBC_TIME_IMP(nanosleep, int, const struct timespec *requested_time, struct timespec *remaining) {
221 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(nanosleep)(requested_time, remaining);
222}
223VSF_LINUX_APPLET_LIBC_TIME_IMP(timer_create, int, clockid_t clockid, struct sigevent *sevp, timer_t *timerid) {
225 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(timer_create)(clockid, sevp, timerid);
226}
227VSF_LINUX_APPLET_LIBC_TIME_IMP(timer_delete, int, timer_t timerid) {
229 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(timer_delete)(timerid);
230}
231VSF_LINUX_APPLET_LIBC_TIME_IMP(timer_settime, int, timer_t timerid, int flags, const struct itimerspec *new_value, struct itimerspec *old_value) {
233 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(timer_settime)(timerid, flags, new_value, old_value);
234}
235VSF_LINUX_APPLET_LIBC_TIME_IMP(timer_gettime, int, timer_t timerid, struct itimerspec *curr_value) {
237 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(timer_gettime)(timerid, curr_value);
238}
239VSF_LINUX_APPLET_LIBC_TIME_IMP(timespec_get, int, struct timespec *ts, int base) {
241 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(timespec_get)(ts, base);
242}
243VSF_LINUX_APPLET_LIBC_TIME_IMP(tzset, void, void) {
245 VSF_LINUX_APPLET_LIBC_TIME_ENTRY(tzset)();
246}
247VSF_LINUX_APPLET_LIBC_TIME_IMP(timegm, time_t, struct tm *tm) {
249 return VSF_LINUX_APPLET_LIBC_TIME_ENTRY(timegm)(tm);
250}
251
252#else // __VSF_APPLET__ && VSF_LINUX_APPLET_USE_LIBC_TIME
253
254clock_t clock(void);
255int clock_gettime(clockid_t clockid, struct timespec *ts);
256int clock_settime(clockid_t clockid, const struct timespec *ts);
257int clock_getres(clockid_t clockid, struct timespec *res);
258int clock_nanosleep(clockid_t clockid, int flags, const struct timespec *request,
259 struct timespec *remain);
260
261int timer_create(clockid_t clockid, struct sigevent *sevp, timer_t *timerid);
262int timer_settime(timer_t timerid, int flags, const struct itimerspec *new_value,
263 struct itimerspec *old_value);
264int timer_gettime(timer_t timerid, struct itimerspec *curr_value);
265int timer_getoverrun(timer_t timerid);
266int timer_delete(timer_t timerid);
267
268time_t time(time_t *t);
269double difftime(time_t time1, time_t time2);
270
271char *asctime(const struct tm *tm);
272char *asctime_r(const struct tm *tm, char *buf);
273
274char *ctime(const time_t *t);
275char *ctime_r(const time_t *t, char *buf);
276
277struct tm *gmtime(const time_t *t);
278struct tm *gmtime_r(const time_t *t, struct tm *result);
279
280time_t timegm(struct tm *tm);
281
282struct tm *localtime(const time_t *t);
283struct tm *localtime_r(const time_t *t, struct tm *result);
284
285time_t mktime(struct tm *tm);
286size_t strftime(char *str, size_t maxsize, const char *format, const struct tm *tm);
287char * strptime(const char *str, const char *format, struct tm *tm);
288
289int nanosleep(const struct timespec *requested_time, struct timespec *remaining);
290
291int timespec_get(struct timespec *ts, int base);
292void tzset(void);
293extern char *tzname[2];
294extern long timezong;
295extern int daylight;
296
297#endif // __VSF_APPLET__ && VSF_LINUX_APPLET_USE_LIBC_TIME
298
299#ifdef __cplusplus
300}
301#endif
302
303#endif
__CLOCK_T clock_t
Definition types.h:132
clockid_t
Definition types.h:138
void * timer_t
Definition types.h:104
__TIME64_T time64_t
Definition types.h:127
__TIME_T time_t
Definition types.h:122
#define clock_nanosleep
Definition time.h:36
struct tm * gmtime(const time_t *t)
Definition vsf_linux_glibc_time.c:347
double difftime(time_t time1, time_t time2)
char * asctime_r(const struct tm *tm, char *buf)
Definition vsf_linux_glibc_time.c:275
#define clock_getres
Definition time.h:35
#define timer_getoverrun
Definition time.h:41
char * tzname[2]
Definition vsf_linux_glibc_time.c:44
struct tm * localtime_r(const time_t *t, struct tm *result)
Definition vsf_linux_glibc_time.c:352
#define clock_gettime
Definition time.h:33
struct tm * localtime(const time_t *t)
Definition vsf_linux_glibc_time.c:357
#define clock_settime
Definition time.h:34
#define clock
Definition time.h:43
#define tzset
Definition time.h:47
#define timegm
Definition time.h:48
char * ctime(const time_t *t)
Definition vsf_linux_glibc_time.c:287
#define timer_create
Definition time.h:37
int daylight
Definition vsf_linux_glibc_time.c:46
long timezong
Definition vsf_linux_glibc_time.c:45
char * ctime_r(const time_t *t, char *buf)
Definition vsf_linux_glibc_time.c:292
#define nanosleep
Definition time.h:42
#define timer_delete
Definition time.h:40
#define timer_settime
Definition time.h:38
#define timer_gettime
Definition time.h:39
#define strftime
Definition time.h:45
struct tm * gmtime_r(const time_t *t, struct tm *result)
Definition vsf_linux_glibc_time.c:297
__VSF_VPLT_DECORATOR__ vsf_linux_libc_time_vplt_t vsf_linux_libc_time_vplt
Definition vsf_linux_glibc_time.c:666
time_t time(time_t *t)
Definition vsf_linux_glibc_time.c:93
#define strptime
Definition time.h:46
char * asctime(const struct tm *tm)
Definition vsf_linux_glibc_time.c:280
time_t mktime(struct tm *tm)
Definition vsf_linux_glibc_time.c:74
#define timespec_get
Definition time.h:44
Definition time.h:85
struct timespec64 it_interval
Definition time.h:86
struct timespec64 it_value
Definition time.h:87
Definition time.h:72
struct timespec it_interval
Definition time.h:73
struct timespec it_value
Definition time.h:74
Definition signal.h:57
Definition time.h:77
time64_t tv_sec
Definition time.h:78
long tv_nsec
Definition time.h:79
Definition time.h:67
long tv_nsec
Definition time.h:69
time_t tv_sec
Definition time.h:68
Definition time.h:53
int tm_mon
Definition time.h:58
const char * tm_zone
Definition time.h:64
int tm_year
Definition time.h:59
int tm_hour
Definition time.h:56
int tm_sec
Definition time.h:54
int tm_isdst
Definition time.h:62
int tm_yday
Definition time.h:61
long int tm_gmtoff
Definition time.h:63
int tm_mday
Definition time.h:57
int tm_min
Definition time.h:55
int tm_wday
Definition time.h:60
Definition time.h:91
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(timespec_get)
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(nanosleep)
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(timer_gettime)
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(asctime_r)
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(timer_getoverrun)
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(clock_settime)
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(clock_getres)
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(clock_nanosleep)
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(timer_delete)
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(timer_settime)
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(timer_create)
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(strptime)
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(localtime_r)
vsf_vplt_info_t info
Definition time.h:92
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(gmtime_r)
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(difftime)
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(asctime)
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(strftime)
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(clock_gettime)
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(localtime)
VSF_APPLET_VPLT_ENTRY_FUNC_DEF(ctime_r)
Definition vsf_cfg.h:95
#define __VSF_VPLT_DECORATOR__
Definition vsf_cfg.h:93
#define VSF_APPLET_VPLT_ENTRY_FUNC_TRACE()
Definition vsf_cfg.h:165
SDL_PixelFormat format
Definition vsf_sdl2_pixelformat.c:32