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.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/cpukit/score/include/rtems/score/timestamp.h b/cpukit/score/include/rtems/score/timestamp.h
index 5c23979224..d03dbc0c45 100644
--- a/cpukit/score/include/rtems/score/timestamp.h
+++ b/cpukit/score/include/rtems/score/timestamp.h
@@ -236,27 +236,6 @@ extern "C" {
#endif
/**
- * @brief Divides a timestamp by an integer value.
- *
- * This routine divides a timestamp by an integer value. The expected
- * use is to assist in benchmark calculations where you typically
- * divide a duration by a number of iterations.
- *
- * @param[in] _time points to the total
- * @param[in] _iterations is the number of iterations
- * @param[in] _result points to the average time.
- *
- * @retval This method fills in @a result.
- */
-#if CPU_TIMESTAMP_USE_STRUCT_TIMESPEC == TRUE
- #define _Timestamp_Divide_by_integer( _time, _iterations, _result ) \
- _Timespec_Divide_by_integer(_time, _iterations, _result )
-#else
- #define _Timestamp_Divide_by_integer( _time, _iterations, _result ) \
- _Timestamp64_Divide_by_integer( _time, _iterations, _result )
-#endif
-
-/**
* @brief Divides a timestamp by another timestamp.
*
* This routine divides a timestamp by another timestamp. The