[f25b73d6] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2006 Ondrej Palkovsky
|
---|
[f8b6d34c] | 3 | * Copyright (c) 2011 Petr Koupy
|
---|
| 4 | * Copyright (c) 2011 Jiri Zarevucky
|
---|
[f25b73d6] | 5 | * All rights reserved.
|
---|
| 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 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 14 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 15 | * documentation and/or other materials provided with the distribution.
|
---|
| 16 | * - The name of the author may not be used to endorse or promote products
|
---|
| 17 | * derived from this software without specific prior written permission.
|
---|
| 18 | *
|
---|
| 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 20 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 21 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 22 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 23 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 24 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 25 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 26 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 27 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 28 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
[b2951e2] | 29 | */
|
---|
| 30 |
|
---|
[fadd381] | 31 | /** @addtogroup libc
|
---|
[b2951e2] | 32 | * @{
|
---|
| 33 | */
|
---|
| 34 | /** @file
|
---|
[e2ae2fc] | 35 | */
|
---|
[f25b73d6] | 36 |
|
---|
[813a703] | 37 | #ifndef LIBC_SYS_TIME_H_
|
---|
| 38 | #define LIBC_SYS_TIME_H_
|
---|
[f25b73d6] | 39 |
|
---|
[36f0738] | 40 | #include <errno.h>
|
---|
[8d2dd7f2] | 41 | #include <stddef.h>
|
---|
| 42 | #include <stdint.h>
|
---|
[f25b73d6] | 43 |
|
---|
[1ab8539] | 44 | #define DST_NONE 0
|
---|
| 45 | #define ASCTIME_BUF_LEN 26
|
---|
[f25b73d6] | 46 |
|
---|
[86029498] | 47 | typedef long time_t;
|
---|
| 48 | typedef long suseconds_t;
|
---|
[f25b73d6] | 49 |
|
---|
[f3b4051] | 50 | typedef uint32_t useconds_t;
|
---|
| 51 | typedef uint32_t mseconds_t;
|
---|
| 52 |
|
---|
[8d2963d] | 53 | struct tm {
|
---|
[7f9d97f3] | 54 | int tm_usec; /* Microseconds [0,999999]. */
|
---|
[1ab8539] | 55 | int tm_sec; /* Seconds [0,60]. */
|
---|
| 56 | int tm_min; /* Minutes [0,59]. */
|
---|
| 57 | int tm_hour; /* Hour [0,23]. */
|
---|
| 58 | int tm_mday; /* Day of month [1,31]. */
|
---|
| 59 | int tm_mon; /* Month of year [0,11]. */
|
---|
| 60 | int tm_year; /* Years since 1900. */
|
---|
| 61 | int tm_wday; /* Day of week [0,6] (Sunday = 0). */
|
---|
| 62 | int tm_yday; /* Day of year [0,365]. */
|
---|
| 63 | int tm_isdst; /* Daylight Savings flag. */
|
---|
[8d2963d] | 64 | };
|
---|
| 65 |
|
---|
[f25b73d6] | 66 | struct timeval {
|
---|
[e2ae2fc] | 67 | time_t tv_sec; /* seconds */
|
---|
| 68 | suseconds_t tv_usec; /* microseconds */
|
---|
[f25b73d6] | 69 | };
|
---|
| 70 |
|
---|
| 71 | struct timezone {
|
---|
[e2ae2fc] | 72 | int tz_minuteswest; /* minutes W of Greenwich */
|
---|
| 73 | int tz_dsttime; /* type of dst correction */
|
---|
[f25b73d6] | 74 | };
|
---|
| 75 |
|
---|
[7f9d97f3] | 76 | extern void tv_add_diff(struct timeval *, suseconds_t);
|
---|
| 77 | extern void tv_add(struct timeval *, struct timeval *);
|
---|
| 78 | extern suseconds_t tv_sub_diff(struct timeval *, struct timeval *);
|
---|
| 79 | extern void tv_sub(struct timeval *, struct timeval *);
|
---|
[1ab8539] | 80 | extern int tv_gt(struct timeval *, struct timeval *);
|
---|
| 81 | extern int tv_gteq(struct timeval *, struct timeval *);
|
---|
| 82 | extern void gettimeofday(struct timeval *, struct timezone *);
|
---|
| 83 | extern void getuptime(struct timeval *);
|
---|
[f25b73d6] | 84 |
|
---|
[5fd3f2d] | 85 | extern void udelay(useconds_t);
|
---|
[b7fd2a0] | 86 | extern errno_t usleep(useconds_t);
|
---|
[5b3394c] | 87 |
|
---|
[1ab8539] | 88 | extern time_t mktime(struct tm *);
|
---|
[b7fd2a0] | 89 | extern errno_t time_utc2tm(const time_t, struct tm *);
|
---|
| 90 | extern errno_t time_utc2str(const time_t, char *);
|
---|
[1ab8539] | 91 | extern void time_tm2str(const struct tm *, char *);
|
---|
[b7fd2a0] | 92 | extern errno_t time_tv2tm(const struct timeval *, struct tm *);
|
---|
| 93 | extern errno_t time_local2tm(const time_t, struct tm *);
|
---|
| 94 | extern errno_t time_local2str(const time_t, char *);
|
---|
[1ab8539] | 95 | extern double difftime(time_t, time_t);
|
---|
[0dd4779] | 96 | extern size_t strftime(char *__restrict__, size_t, const char *__restrict__,
|
---|
| 97 | const struct tm *__restrict__);
|
---|
[5fd3f2d] | 98 |
|
---|
[f25b73d6] | 99 | #endif
|
---|
[b2951e2] | 100 |
|
---|
[fadd381] | 101 | /** @}
|
---|
[b2951e2] | 102 | */
|
---|