time: Typedef time_t to int64_t if CONFIG_SYSTEM_TIME64 is defined
to handle 2038 problem correctly Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
parent
1e6a8f56d3
commit
942513cd37
@ -48,6 +48,7 @@
|
|||||||
#include <nuttx/config.h>
|
#include <nuttx/config.h>
|
||||||
|
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
|
#include <inttypes.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
@ -437,7 +438,7 @@ int up_alarm_start(const struct timespec *ts)
|
|||||||
|
|
||||||
up_tmr_sync_down();
|
up_tmr_sync_down();
|
||||||
|
|
||||||
tmrinfo("%d.%09ld\n", ts->tv_sec, ts->tv_nsec);
|
tmrinfo("%" PRIdMAX ".%09ld\n", (uintmax_t)ts->tv_sec, ts->tv_nsec);
|
||||||
tmrinfo("start\n");
|
tmrinfo("start\n");
|
||||||
|
|
||||||
return OK;
|
return OK;
|
||||||
|
@ -98,7 +98,11 @@
|
|||||||
|
|
||||||
/* Scalar types */
|
/* Scalar types */
|
||||||
|
|
||||||
|
#ifdef CONFIG_SYSTEM_TIME64
|
||||||
|
typedef int64_t time_t; /* Holds time in seconds */
|
||||||
|
#else
|
||||||
typedef uint32_t time_t; /* Holds time in seconds */
|
typedef uint32_t time_t; /* Holds time in seconds */
|
||||||
|
#endif
|
||||||
typedef uint8_t clockid_t; /* Identifies one time base source */
|
typedef uint8_t clockid_t; /* Identifies one time base source */
|
||||||
typedef FAR void *timer_t; /* Represents one POSIX timer */
|
typedef FAR void *timer_t; /* Represents one POSIX timer */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user