time.h 2.6 KB
Newer Older
1
/*
2
 * Copyright (c) 2006-2021, RT-Thread Development Team
3 4 5 6 7
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 * Change Logs:
 * Date           Author       Notes
8
 * 2020-09-07     Meco Man     combine gcc armcc iccarm
mysterywolf's avatar
update  
mysterywolf 已提交
9
 * 2021-02-12     Meco Man     move all definitions located in <clock_time.h> to this file
10
 */
11 12 13
#ifndef _SYS_TIME_H_
#define _SYS_TIME_H_

14
#include <rtconfig.h>
15 16 17 18 19 20
#include <time.h>

#ifdef __cplusplus
extern "C" {
#endif

21 22 23 24 25 26 27 28
/*
 * Skip define timespec for IAR version over 8.10.1 where __VER__ is 8010001.
 */
#if defined ( __ICCARM__ ) && (__VER__ >= 8010001)
#define _TIMESPEC_DEFINED
#endif


29 30 31 32 33 34
#ifndef _TIMEVAL_DEFINED
#define _TIMEVAL_DEFINED
/*
 * Structure returned by gettimeofday(2) system call,
 * and used in other calls.
 */
35
#if !(defined(_WIN32))
36 37 38 39
struct timeval {
    long    tv_sec;     /* seconds */
    long    tv_usec;    /* and microseconds */
};
40
#endif
41 42
#endif /* _TIMEVAL_DEFINED */

mysterywolf's avatar
mysterywolf 已提交
43
#if !(defined(__GNUC__) && !defined(__ARMCC_VERSION)/*GCC*/) && !defined (__ICCARM__) && !defined (_WIN32)
44 45 46 47 48
struct timespec {
    time_t  tv_sec;     /* seconds */
    long    tv_nsec;    /* and nanoseconds */
};
#endif
49 50 51 52 53 54

struct timezone {
  int tz_minuteswest;   /* minutes west of Greenwich */
  int tz_dsttime;       /* type of dst correction */
};

mysterywolf's avatar
mysterywolf 已提交
55
int stime(const time_t *t);
56
time_t timegm(struct tm * const t);
mysterywolf's avatar
mysterywolf 已提交
57 58
int gettimeofday(struct timeval *tv, struct timezone *tz);
int settimeofday(const struct timeval *tv, const struct timezone *tz);
mysterywolf's avatar
mysterywolf 已提交
59 60 61
#if defined(__ARMCC_VERSION) || defined (__ICCARM__)
struct tm *gmtime_r(const time_t *timep, struct tm *r);
#endif
62

63
#ifdef RT_USING_POSIX
mysterywolf's avatar
mysterywolf 已提交
64
#include <sys/types.h>
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
/* posix clock and timer */
#define MILLISECOND_PER_SECOND  1000UL
#define MICROSECOND_PER_SECOND  1000000UL
#define NANOSECOND_PER_SECOND   1000000000UL

#define MILLISECOND_PER_TICK    (MILLISECOND_PER_SECOND / RT_TICK_PER_SECOND)
#define MICROSECOND_PER_TICK    (MICROSECOND_PER_SECOND / RT_TICK_PER_SECOND)
#define NANOSECOND_PER_TICK     (NANOSECOND_PER_SECOND  / RT_TICK_PER_SECOND)

#ifndef CLOCK_REALTIME
#define CLOCK_REALTIME      1
#endif

#define CLOCK_CPUTIME_ID    2

#ifndef CLOCK_PROCESS_CPUTIME_ID
#define CLOCK_PROCESS_CPUTIME_ID CLOCK_CPUTIME_ID
#endif
#ifndef CLOCK_THREAD_CPUTIME_ID
#define CLOCK_THREAD_CPUTIME_ID  CLOCK_CPUTIME_ID
#endif

#ifndef CLOCK_MONOTONIC
#define CLOCK_MONOTONIC     4
#endif

int clock_getres  (clockid_t clockid, struct timespec *res);
int clock_gettime (clockid_t clockid, struct timespec *tp);
int clock_settime (clockid_t clockid, const struct timespec *tp);
mysterywolf's avatar
mysterywolf 已提交
94
int clock_time_to_tick(const struct timespec *time);
95
#endif /* RT_USING_POSIX */
96

97 98 99 100 101
#ifdef __cplusplus
}
#endif

#endif /* _SYS_TIME_H_ */