2018-10-14 19:28:18 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
2020-09-08 10:26:03 +08:00
|
|
|
* 2020-09-07 Meco Man combine gcc armcc iccarm
|
2021-02-12 12:14:45 +08:00
|
|
|
* 2021-02-12 Meco Man move all definitions located in <clock_time.h> to this file
|
2018-10-14 19:28:18 +08:00
|
|
|
*/
|
2015-05-04 20:35:28 +08:00
|
|
|
#ifndef _SYS_TIME_H_
|
|
|
|
#define _SYS_TIME_H_
|
|
|
|
|
2021-02-12 01:30:41 +08:00
|
|
|
#include <rtconfig.h>
|
2015-05-04 20:35:28 +08:00
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2020-09-08 10:26:03 +08:00
|
|
|
/*
|
|
|
|
* Skip define timespec for IAR version over 8.10.1 where __VER__ is 8010001.
|
|
|
|
*/
|
|
|
|
#if defined ( __ICCARM__ ) && (__VER__ >= 8010001)
|
|
|
|
#define _TIMESPEC_DEFINED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-05-04 20:35:28 +08:00
|
|
|
#ifndef _TIMEVAL_DEFINED
|
|
|
|
#define _TIMEVAL_DEFINED
|
|
|
|
/*
|
|
|
|
* Structure returned by gettimeofday(2) system call,
|
|
|
|
* and used in other calls.
|
|
|
|
*/
|
|
|
|
struct timeval {
|
|
|
|
long tv_sec; /* seconds */
|
|
|
|
long tv_usec; /* and microseconds */
|
|
|
|
};
|
|
|
|
#endif /* _TIMEVAL_DEFINED */
|
|
|
|
|
2020-12-17 11:32:10 +08:00
|
|
|
#if !defined __GNUC__ && !defined __ICCARM__
|
2020-12-04 20:16:56 +08:00
|
|
|
struct timespec {
|
|
|
|
time_t tv_sec; /* seconds */
|
|
|
|
long tv_nsec; /* and nanoseconds */
|
|
|
|
};
|
|
|
|
#endif
|
2015-05-04 20:35:28 +08:00
|
|
|
|
|
|
|
struct timezone {
|
|
|
|
int tz_minuteswest; /* minutes west of Greenwich */
|
|
|
|
int tz_dsttime; /* type of dst correction */
|
|
|
|
};
|
|
|
|
|
2021-02-08 00:56:31 +08:00
|
|
|
int stime(const time_t *t);
|
2021-02-05 13:13:22 +08:00
|
|
|
time_t timegm(struct tm * const t);
|
2021-02-08 00:56:31 +08:00
|
|
|
int gettimeofday(struct timeval *tv, struct timezone *tz);
|
|
|
|
int settimeofday(const struct timeval *tv, const struct timezone *tz);
|
2015-05-04 20:35:28 +08:00
|
|
|
|
2021-02-12 12:08:14 +08:00
|
|
|
#ifdef RT_USING_POSIX
|
2021-02-12 02:58:44 +08:00
|
|
|
#include <sys/types.h>
|
2021-02-12 01:30:41 +08:00
|
|
|
/* 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);
|
2021-02-12 20:36:17 +08:00
|
|
|
int clock_time_to_tick(const struct timespec *time);
|
2021-02-12 12:08:14 +08:00
|
|
|
#endif /* RT_USING_POSIX */
|
2021-02-12 01:30:41 +08:00
|
|
|
|
2015-05-04 20:35:28 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _SYS_TIME_H_ */
|