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.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/cpukit/score/include/rtems/score/timestamp.h b/cpukit/score/include/rtems/score/timestamp.h
index 895afcca43..5c23979224 100644
--- a/cpukit/score/include/rtems/score/timestamp.h
+++ b/cpukit/score/include/rtems/score/timestamp.h
@@ -109,24 +109,6 @@ extern "C" {
#endif
/**
- * @brief Determines the validity of a timestamp.
- *
- * This method determines the validity of a timestamp.
- *
- * @param[in] _time points to the timestamp instance to validate.
- *
- * @retval This method returns true if @a time is valid and
- * false otherwise.
- */
-#if CPU_TIMESTAMP_USE_STRUCT_TIMESPEC == TRUE
- #define _Timestamp_Is_valid( _time ) \
- _Timespec_Is_valid( _time )
-#else
- #define _Timestamp_Is_valid( _time ) \
- _Timestamp64_Is_valid( _time )
-#endif
-
-/**
* @brief Less than operator for timestamps.
*
* This method is the less than operator for timestamps.