From 6d2becb78d46c82fd3bacfb94cbfd02e440f3d67 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 3 Sep 2021 15:04:49 +0200 Subject: score: Limit the CLOCK_REALTIME setting Limit the CLOCK_REALTIME setting to ensure that the CLOCK_REALTIME is defined for a system uptime of at least 114 years. --- cpukit/score/src/coretodcheck.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/score/src/coretodcheck.c') diff --git a/cpukit/score/src/coretodcheck.c b/cpukit/score/src/coretodcheck.c index b42435aa43..8c012c5070 100644 --- a/cpukit/score/src/coretodcheck.c +++ b/cpukit/score/src/coretodcheck.c @@ -51,7 +51,7 @@ Status_Control _TOD_Is_valid_new_time_of_day( const struct timespec *tod ) return STATUS_INVALID_NUMBER; } - if ( _Watchdog_Is_far_future_timespec( tod ) ) { + if ( tod->tv_sec > TOD_SECONDS_1970_THROUGH_2400 ) { return STATUS_INVALID_NUMBER; } -- cgit v1.2.3