summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/timestamp64.h
diff options
context:
space:
mode:
authorAlexander Krutwig <alexander.krutwig@embedded-brains.de>2015-03-20 08:28:20 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-03-20 13:46:43 +0100
commitc380316710ad67e695cecd170125248c726731b9 (patch)
tree805ceb7650711a15a874220f0d7d45b2127e5bf2 /cpukit/score/include/rtems/score/timestamp64.h
parentscore: Delete unused _Timestamp_Divide_by_integer (diff)
downloadrtems-c380316710ad67e695cecd170125248c726731b9.tar.bz2
score: Delete unused _Timestamp_(To|From)_ticks()
Diffstat (limited to 'cpukit/score/include/rtems/score/timestamp64.h')
-rw-r--r--cpukit/score/include/rtems/score/timestamp64.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/cpukit/score/include/rtems/score/timestamp64.h b/cpukit/score/include/rtems/score/timestamp64.h
index 29e429788e..39b4965a8c 100644
--- a/cpukit/score/include/rtems/score/timestamp64.h
+++ b/cpukit/score/include/rtems/score/timestamp64.h
@@ -196,34 +196,6 @@ static inline void _Timestamp64_implementation_Add_to(
);
#endif
-/**
- * @brief Convert 64-bit timestamp to number of ticks.
- *
- * This routine convert the @a time timestamp to the corresponding number
- * of clock ticks.
- *
- * @param[in] _time points to the time to be converted
- *
- * @retval This method returns the number of ticks computed.
- */
-uint32_t _Timestamp64_To_ticks(
- const Timestamp64_Control *_time
-);
-
-/**
- * @brief Convert ticks to 64-bit timestamp.
- *
- * This routine converts the @a _ticks value to the corresponding
- * timestamp format @a _time.
- *
- * @param[in] _time points to the timestamp format time result
- * @param[out] _ticks points to the number of ticks to be filled in
- */
-void _Timestamp64_From_ticks(
- uint32_t _ticks,
- Timestamp64_Control *_time
-);
-
static inline void _Timestamp64_implementation_Subtract(
const Timestamp64_Control *_start,
const Timestamp64_Control *_end,