1 | /*
|
---|
2 | * Copyright (c) 2006 Ondrej Palkovsky
|
---|
3 | * Copyright (c) 2011 Petr Koupy
|
---|
4 | * Copyright (c) 2011 Jiri Zarevucky
|
---|
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.
|
---|
29 | */
|
---|
30 |
|
---|
31 | /** @addtogroup libc
|
---|
32 | * @{
|
---|
33 | */
|
---|
34 | /** @file
|
---|
35 | */
|
---|
36 |
|
---|
37 | #ifndef LIBC_SYS_TIME_H_
|
---|
38 | #define LIBC_SYS_TIME_H_
|
---|
39 |
|
---|
40 | #include <sys/types.h>
|
---|
41 |
|
---|
42 | #define DST_NONE 0
|
---|
43 | #define ASCTIME_BUF_LEN 26
|
---|
44 |
|
---|
45 | typedef long time_t;
|
---|
46 | typedef long suseconds_t;
|
---|
47 |
|
---|
48 | typedef uint32_t useconds_t;
|
---|
49 | typedef uint32_t mseconds_t;
|
---|
50 |
|
---|
51 | struct tm {
|
---|
52 | int tm_sec; /* Seconds [0,60]. */
|
---|
53 | int tm_min; /* Minutes [0,59]. */
|
---|
54 | int tm_hour; /* Hour [0,23]. */
|
---|
55 | int tm_mday; /* Day of month [1,31]. */
|
---|
56 | int tm_mon; /* Month of year [0,11]. */
|
---|
57 | int tm_year; /* Years since 1900. */
|
---|
58 | int tm_wday; /* Day of week [0,6] (Sunday = 0). */
|
---|
59 | int tm_yday; /* Day of year [0,365]. */
|
---|
60 | int tm_isdst; /* Daylight Savings flag. */
|
---|
61 | };
|
---|
62 |
|
---|
63 | struct timeval {
|
---|
64 | time_t tv_sec; /* seconds */
|
---|
65 | suseconds_t tv_usec; /* microseconds */
|
---|
66 | };
|
---|
67 |
|
---|
68 | struct timezone {
|
---|
69 | int tz_minuteswest; /* minutes W of Greenwich */
|
---|
70 | int tz_dsttime; /* type of dst correction */
|
---|
71 | };
|
---|
72 |
|
---|
73 | extern void tv_add(struct timeval *tv, suseconds_t usecs);
|
---|
74 | extern suseconds_t tv_sub(struct timeval *tv1, struct timeval *tv2);
|
---|
75 | extern int tv_gt(struct timeval *tv1, struct timeval *tv2);
|
---|
76 | extern int tv_gteq(struct timeval *tv1, struct timeval *tv2);
|
---|
77 | extern int gettimeofday(struct timeval *tv, struct timezone *tz);
|
---|
78 | extern int getuptime(struct timeval *tv);
|
---|
79 |
|
---|
80 | extern void udelay(useconds_t);
|
---|
81 |
|
---|
82 | extern time_t mktime(struct tm *tm);
|
---|
83 | extern int time_utc2tm(const time_t time, struct tm *result);
|
---|
84 | extern int time_utc2str(const time_t time, char *buf);
|
---|
85 | extern void time_tm2str(const struct tm *timeptr, char *buf);
|
---|
86 | extern int time_local2tm(const time_t time, struct tm *result);
|
---|
87 | extern int time_local2str(const time_t time, char *buf);
|
---|
88 | extern double difftime(time_t time1, time_t time0);
|
---|
89 | extern size_t strftime(char *restrict s, size_t maxsize,
|
---|
90 | const char *restrict format, const struct tm *restrict tm);
|
---|
91 |
|
---|
92 | #endif
|
---|
93 |
|
---|
94 | /** @}
|
---|
95 | */
|
---|