summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/timestamp.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/include/rtems/score/timestamp.h')
-rw-r--r--cpukit/score/include/rtems/score/timestamp.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/cpukit/score/include/rtems/score/timestamp.h b/cpukit/score/include/rtems/score/timestamp.h
index b86090978e..83948b46e1 100644
--- a/cpukit/score/include/rtems/score/timestamp.h
+++ b/cpukit/score/include/rtems/score/timestamp.h
@@ -194,31 +194,6 @@ extern "C" {
#endif
/**
- * @brief Add to a Timestamp (At Clock Tick)
- *
- * This routine adds two timestamps. The second argument is added
- * to the first.
- *
- * @node This routine places a special requirement on the addition
- * operation. It must return the number of units that the
- * seconds field changed as the result of the addition. Since this
- * operation is ONLY used as part of processing a clock tick,
- * it is generally safe to assume that only one second changed.
- *
- * @param[in] _time points to the base time to be added to
- * @param[in] _add points to the timestamp to add to the first argument
- *
- * @return This method returns the number of seconds @a time increased by.
- */
-#if CPU_TIMESTAMP_USE_STRUCT_TIMESPEC == TRUE
- #define _Timestamp_Add_to_at_tick( _time, _add ) \
- _Timespec_Add_to( _time, _add )
-#else
- #define _Timestamp_Add_to_at_tick( _time, _add ) \
- _Timestamp64_Add_to_at_tick( _time, _add )
-#endif
-
-/**
* @brief Convert Timestamp to Number of Ticks
*
* This routine convert the @a time timestamp to the corresponding number