From 98c01a53c808a33e63d0e52490cc1c10a9dd1038 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 8 Nov 2018 11:32:13 +0100 Subject: rtems: Avoid in API Use a real function for rtems_clock_get_uptime_seconds(). Update #3598. --- cpukit/rtems/src/clockgetuptimeseconds.c | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 cpukit/rtems/src/clockgetuptimeseconds.c (limited to 'cpukit/rtems/src/clockgetuptimeseconds.c') diff --git a/cpukit/rtems/src/clockgetuptimeseconds.c b/cpukit/rtems/src/clockgetuptimeseconds.c new file mode 100644 index 0000000000..ad412b2234 --- /dev/null +++ b/cpukit/rtems/src/clockgetuptimeseconds.c @@ -0,0 +1,31 @@ +/** + * @file + * + * @ingroup ClassicClock + */ + +/* + * Copyright (c) 2018 embedded brains GmbH. All rights reserved. + * + * embedded brains GmbH + * Dornierstr. 4 + * 82178 Puchheim + * Germany + * + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.com/license/LICENSE. + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include +#include + +time_t rtems_clock_get_uptime_seconds( void ) +{ + return _Timecounter_Time_uptime - 1; +} -- cgit v1.2.3