[813a703] | 1 | /*
|
---|
[bd41ac52] | 2 | * Copyright (c) 2018 Jakub Jermar
|
---|
[813a703] | 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | /** @addtogroup libc
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
[5b0cf63] | 33 | */
|
---|
[813a703] | 34 |
|
---|
[4805495] | 35 | #ifndef _LIBC_TIME_H_
|
---|
| 36 | #define _LIBC_TIME_H_
|
---|
[813a703] | 37 |
|
---|
[bc56f30] | 38 | #include <_bits/decls.h>
|
---|
[82fd245] | 39 |
|
---|
[bd41ac52] | 40 | /* ISO/IEC 9899:2011 7.27.1 (2) */
|
---|
| 41 |
|
---|
| 42 | #include <_bits/NULL.h>
|
---|
| 43 |
|
---|
| 44 | #define CLOCKS_PER_SEC ((clock_t) 1000000)
|
---|
| 45 |
|
---|
| 46 | #define TIME_UTC 1
|
---|
| 47 |
|
---|
| 48 | /* ISO/IEC 9899:2011 7.27.1 (3) */
|
---|
| 49 |
|
---|
| 50 | #include <_bits/size_t.h>
|
---|
| 51 |
|
---|
[bc56f30] | 52 | __C_DECLS_BEGIN;
|
---|
| 53 |
|
---|
[bd41ac52] | 54 | /* ISO/IEC 9899:2011 7.27.1 (3), (4) */
|
---|
| 55 |
|
---|
| 56 | typedef long long time_t;
|
---|
| 57 | typedef long long clock_t;
|
---|
| 58 |
|
---|
| 59 | struct timespec {
|
---|
| 60 | time_t tv_sec;
|
---|
| 61 | long tv_nsec;
|
---|
| 62 | };
|
---|
| 63 |
|
---|
| 64 | struct tm {
|
---|
| 65 | int tm_sec;
|
---|
[92244ed] | 66 | int tm_nsec; /**< Nonstandard extension, nanoseconds since last second. */
|
---|
[bd41ac52] | 67 | int tm_min;
|
---|
| 68 | int tm_hour;
|
---|
| 69 | int tm_mday;
|
---|
| 70 | int tm_mon;
|
---|
| 71 | int tm_year;
|
---|
| 72 | int tm_wday;
|
---|
| 73 | int tm_yday;
|
---|
| 74 | int tm_isdst;
|
---|
| 75 | };
|
---|
| 76 |
|
---|
| 77 | /* ISO/IEC 9899:2011 7.27.2.1 (1) */
|
---|
| 78 | extern clock_t clock(void);
|
---|
| 79 |
|
---|
| 80 | /* ISO/IEC 9899:2011 7.27.2.2 (1) */
|
---|
| 81 | extern double difftime(time_t, time_t);
|
---|
| 82 |
|
---|
| 83 | /* ISO/IEC 9899:2011 7.27.2.3 (1) */
|
---|
| 84 | extern time_t mktime(struct tm *);
|
---|
| 85 |
|
---|
| 86 | /* ISO/IEC 9899:2011 7.27.2.4 (1) */
|
---|
[813a703] | 87 | extern time_t time(time_t *);
|
---|
| 88 |
|
---|
[bd41ac52] | 89 | /* ISO/IEC 9899:2011 7.27.2.5 (1) */
|
---|
| 90 | extern int timespec_get(struct timespec *, int);
|
---|
| 91 |
|
---|
| 92 | /* ISO/IEC 9899:2011 7.27.3.1 (1) */
|
---|
| 93 | extern char *asctime(const struct tm *);
|
---|
| 94 |
|
---|
| 95 | /* ISO/IEC 9899:2011 7.27.3.2 (1) */
|
---|
| 96 | extern char *ctime(const time_t *);
|
---|
| 97 |
|
---|
| 98 | /* ISO/IEC 9899:2011 7.27.3.3 (1) */
|
---|
| 99 | extern struct tm *gmtime(const time_t *);
|
---|
| 100 |
|
---|
| 101 | /* ISO/IEC 9899:2011 7.27.3.4 (1) */
|
---|
| 102 | extern struct tm *localtime(const time_t *);
|
---|
| 103 |
|
---|
| 104 | /* ISO/IEC 9899:2011 7.27.3.5 (1) */
|
---|
[d2c91ab] | 105 | extern size_t strftime(char *__restrict__, size_t, const char *__restrict__,
|
---|
| 106 | const struct tm *__restrict__);
|
---|
[bd41ac52] | 107 |
|
---|
[bc56f30] | 108 | __C_DECLS_END;
|
---|
| 109 |
|
---|
[8867cf6] | 110 | #ifdef _HELENOS_SOURCE
|
---|
| 111 |
|
---|
[bd41ac52] | 112 | /*
|
---|
| 113 | * HelenOS specific extensions
|
---|
| 114 | */
|
---|
| 115 |
|
---|
| 116 | #include <stdbool.h>
|
---|
| 117 | #include <_bits/errno.h>
|
---|
| 118 |
|
---|
[bc56f30] | 119 | __HELENOS_DECLS_BEGIN;
|
---|
| 120 |
|
---|
[bd41ac52] | 121 | typedef long long sec_t;
|
---|
| 122 | typedef long long msec_t;
|
---|
| 123 | typedef long long usec_t;
|
---|
| 124 | typedef long long nsec_t; /* good for +/- 292 years */
|
---|
| 125 |
|
---|
| 126 | #define SEC2MSEC(s) ((s) * 1000ll)
|
---|
| 127 | #define SEC2USEC(s) ((s) * 1000000ll)
|
---|
| 128 | #define SEC2NSEC(s) ((s) * 1000000000ll)
|
---|
| 129 |
|
---|
| 130 | #define MSEC2SEC(ms) ((ms) / 1000ll)
|
---|
| 131 | #define MSEC2USEC(ms) ((ms) * 1000ll)
|
---|
| 132 | #define MSEC2NSEC(ms) ((ms) * 1000000ll)
|
---|
| 133 |
|
---|
| 134 | #define USEC2SEC(us) ((us) / 1000000ll)
|
---|
| 135 | #define USEC2MSEC(us) ((us) / 1000ll)
|
---|
| 136 | #define USEC2NSEC(us) ((us) * 1000ll)
|
---|
| 137 |
|
---|
| 138 | #define NSEC2SEC(ns) ((ns) / 1000000000ll)
|
---|
| 139 | #define NSEC2MSEC(ns) ((ns) / 1000000ll)
|
---|
| 140 | #define NSEC2USEC(ns) ((ns) / 1000ll)
|
---|
| 141 |
|
---|
| 142 | extern void getuptime(struct timespec *);
|
---|
| 143 | extern void getrealtime(struct timespec *);
|
---|
| 144 |
|
---|
| 145 | extern void ts_add_diff(struct timespec *, nsec_t);
|
---|
| 146 | extern void ts_add(struct timespec *, const struct timespec *);
|
---|
| 147 | extern void ts_sub(struct timespec *, const struct timespec *);
|
---|
| 148 | extern nsec_t ts_sub_diff(const struct timespec *, const struct timespec *);
|
---|
| 149 | extern bool ts_gt(const struct timespec *, const struct timespec *);
|
---|
| 150 | extern bool ts_gteq(const struct timespec *, const struct timespec *);
|
---|
| 151 |
|
---|
| 152 | extern errno_t time_utc2tm(const time_t, struct tm *);
|
---|
| 153 | extern errno_t time_utc2str(const time_t, char *);
|
---|
| 154 | extern void time_tm2str(const struct tm *, char *);
|
---|
| 155 | extern errno_t time_ts2tm(const struct timespec *, struct tm *);
|
---|
| 156 | extern errno_t time_local2tm(const time_t, struct tm *);
|
---|
| 157 | extern errno_t time_local2str(const time_t, char *);
|
---|
| 158 |
|
---|
| 159 | extern void udelay(sysarg_t);
|
---|
| 160 |
|
---|
[bc56f30] | 161 | __HELENOS_DECLS_END;
|
---|
[8867cf6] | 162 |
|
---|
[bc56f30] | 163 | #endif /* _HELENOS_SOURCE */
|
---|
[82fd245] | 164 |
|
---|
[813a703] | 165 | #endif
|
---|
| 166 |
|
---|
| 167 | /** @}
|
---|
| 168 | */
|
---|