From 9c20b987cd663e10443f2a6dc9d6b1c1d3d94e83 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 26 Nov 2020 19:53:25 +0100 Subject: rtems: Add --- cpukit/include/rtems/rtems/clock.h | 30 -------------- cpukit/include/rtems/rtems/clockimpl.h | 73 ++++++++++++++++++++++++++++++++++ cpukit/rtems/src/clockset.c | 2 +- cpukit/rtems/src/clocktodtoseconds.c | 2 +- cpukit/rtems/src/clocktodvalidate.c | 2 +- cpukit/rtems/src/taskwakewhen.c | 2 +- cpukit/rtems/src/timercreate.c | 2 +- 7 files changed, 78 insertions(+), 35 deletions(-) create mode 100644 cpukit/include/rtems/rtems/clockimpl.h (limited to 'cpukit') diff --git a/cpukit/include/rtems/rtems/clock.h b/cpukit/include/rtems/rtems/clock.h index 7f2887fb03..c3eea7d254 100644 --- a/cpukit/include/rtems/rtems/clock.h +++ b/cpukit/include/rtems/rtems/clock.h @@ -267,36 +267,6 @@ time_t rtems_clock_get_uptime_seconds( void ); */ uint64_t rtems_clock_get_uptime_nanoseconds( void ); -/** - * @brief TOD Validate - * - * This support function returns true if @a the_tod contains - * a valid time of day, and false otherwise. - * - * @param[in] the_tod is the TOD structure to validate - * - * @retval This method returns true if the TOD is valid and false otherwise. - * - * @note This routine only works for leap-years through 2099. - */ -bool _TOD_Validate( - const rtems_time_of_day *the_tod -); - -/** - * @brief TOD to Seconds - * - * This function returns the number seconds between the epoch and @a the_tod. - * - * @param[in] the_tod is the TOD structure to convert to seconds - * - * @retval This method returns the number of seconds since epoch represented - * by @a the_tod - */ -Watchdog_Interval _TOD_To_seconds( - const rtems_time_of_day *the_tod -); - #ifdef __cplusplus } #endif diff --git a/cpukit/include/rtems/rtems/clockimpl.h b/cpukit/include/rtems/rtems/clockimpl.h new file mode 100644 index 0000000000..eff1231fb2 --- /dev/null +++ b/cpukit/include/rtems/rtems/clockimpl.h @@ -0,0 +1,73 @@ +/** + * @file + * + * @ingroup RTEMSImplClassicClock + * + * @brief This header file provides interfaces used by the Clock Manager + * implementation. + */ + +/* COPYRIGHT (c) 1989-2013. + * On-Line Applications Research Corporation (OAR). + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. + */ + +#ifndef _RTEMS_RTEMS_CLOCKIMPL_H +#define _RTEMS_RTEMS_CLOCKIMPL_H + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * @defgroup RTEMSImplClassicClock Clock Manager + * + * @ingroup RTEMSImplClassic + * + * @brief This group contains the Clock Manager implementation. + * + * @{ + */ + +/** + * @brief TOD Validate + * + * This support function returns true if @a the_tod contains + * a valid time of day, and false otherwise. + * + * @param[in] the_tod is the TOD structure to validate + * + * @retval This method returns true if the TOD is valid and false otherwise. + * + * @note This routine only works for leap-years through 2099. + */ +bool _TOD_Validate( + const rtems_time_of_day *the_tod +); + +/** + * @brief TOD to Seconds + * + * This function returns the number seconds between the epoch and @a the_tod. + * + * @param[in] the_tod is the TOD structure to convert to seconds + * + * @retval This method returns the number of seconds since epoch represented + * by @a the_tod + */ +Watchdog_Interval _TOD_To_seconds( + const rtems_time_of_day *the_tod +); + +/** @} */ + +#ifdef __cplusplus +} +#endif + +#endif /* _RTEMS_RTEMS_CLOCKIMPL_H */ diff --git a/cpukit/rtems/src/clockset.c b/cpukit/rtems/src/clockset.c index a42cde7d90..58503394fd 100644 --- a/cpukit/rtems/src/clockset.c +++ b/cpukit/rtems/src/clockset.c @@ -18,7 +18,7 @@ #include "config.h" #endif -#include +#include #include #include diff --git a/cpukit/rtems/src/clocktodtoseconds.c b/cpukit/rtems/src/clocktodtoseconds.c index 30bfba8cbc..d1a80170b2 100644 --- a/cpukit/rtems/src/clocktodtoseconds.c +++ b/cpukit/rtems/src/clocktodtoseconds.c @@ -18,7 +18,7 @@ #include "config.h" #endif -#include +#include #include #define TOD_SECONDS_AT_2100_03_01_00_00 4107538800UL diff --git a/cpukit/rtems/src/clocktodvalidate.c b/cpukit/rtems/src/clocktodvalidate.c index 55cff448b2..a0f841686c 100644 --- a/cpukit/rtems/src/clocktodvalidate.c +++ b/cpukit/rtems/src/clocktodvalidate.c @@ -18,7 +18,7 @@ #include "config.h" #endif -#include +#include #include #include diff --git a/cpukit/rtems/src/taskwakewhen.c b/cpukit/rtems/src/taskwakewhen.c index 23789e1a14..39467754ce 100644 --- a/cpukit/rtems/src/taskwakewhen.c +++ b/cpukit/rtems/src/taskwakewhen.c @@ -19,7 +19,7 @@ #endif #include -#include +#include #include #include #include diff --git a/cpukit/rtems/src/timercreate.c b/cpukit/rtems/src/timercreate.c index db929417d5..cadcecb057 100644 --- a/cpukit/rtems/src/timercreate.c +++ b/cpukit/rtems/src/timercreate.c @@ -19,7 +19,7 @@ #endif #include -#include +#include #include #include #include -- cgit v1.2.3