summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/rtems/clock.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-11-26 19:53:25 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-12-02 07:45:53 +0100
commit9c20b987cd663e10443f2a6dc9d6b1c1d3d94e83 (patch)
tree8611fd6a009e1bac76b8241de4dd998a0baa9acd /cpukit/include/rtems/rtems/clock.h
parentshell: Rename "IO" typedef for better Doxygen (diff)
downloadrtems-9c20b987cd663e10443f2a6dc9d6b1c1d3d94e83.tar.bz2
rtems: Add <rtems/rtems/clockimpl.h>
Diffstat (limited to '')
-rw-r--r--cpukit/include/rtems/rtems/clock.h30
1 files changed, 0 insertions, 30 deletions
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