summaryrefslogtreecommitdiffstats
path: root/cpukit/include
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-12-22 08:16:43 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-12-22 08:17:50 +0100
commitd40477161eebe53460b6219901bdc4e33efd43ed (patch)
tree883fcdb82f7593fc8e560bef07ec34f68ac544dc /cpukit/include
parentbsp/mrm332: Fix TLS support in linker command file (diff)
downloadrtems-d40477161eebe53460b6219901bdc4e33efd43ed.tar.bz2
rtems: Fix Clock Manager parameter descriptions
Update #4572.
Diffstat (limited to 'cpukit/include')
-rw-r--r--cpukit/include/rtems/rtems/clock.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/cpukit/include/rtems/rtems/clock.h b/cpukit/include/rtems/rtems/clock.h
index 6cdc8d68e3..7247b483db 100644
--- a/cpukit/include/rtems/rtems/clock.h
+++ b/cpukit/include/rtems/rtems/clock.h
@@ -451,8 +451,8 @@ void rtems_clock_get_realtime_coarse_timeval( struct timeval *time_snapshot );
* @brief Gets the time elapsed since some fixed time point in the past
* measured using the CLOCK_MONOTONIC in seconds and nanoseconds format.
*
- * @param[out] time_snapshot is the pointer to a bintime object. The time
- * elapsed since some fixed time point in the past measured using the
+ * @param[out] time_snapshot is the pointer to a struct timespec object. The
+ * time elapsed since some fixed time point in the past measured using the
* CLOCK_MONOTONIC at some time point during the directive call will be
* stored in this object. Calling the directive with a pointer equal to NULL
* is undefined behaviour.
@@ -562,8 +562,8 @@ int64_t rtems_clock_get_monotonic_sbintime( void );
* @brief Gets the time elapsed since some fixed time point in the past
* measured using the CLOCK_MONOTONIC in seconds and microseconds format.
*
- * @param[out] time_snapshot is the pointer to a bintime object. The time
- * elapsed since some fixed time point in the past measured using the
+ * @param[out] time_snapshot is the pointer to a struct timeval object. The
+ * time elapsed since some fixed time point in the past measured using the
* CLOCK_MONOTONIC at some time point during the directive call will be
* stored in this object. Calling the directive with a pointer equal to NULL
* is undefined behaviour.
@@ -601,8 +601,8 @@ void rtems_clock_get_monotonic_timeval( struct timeval *time_snapshot );
* measured using the CLOCK_MONOTONIC in coarse resolution in seconds and
* nanoseconds format.
*
- * @param[out] time_snapshot is the pointer to a bintime object. The time
- * elapsed since some fixed time point in the past measured using the
+ * @param[out] time_snapshot is the pointer to a struct timespec object. The
+ * time elapsed since some fixed time point in the past measured using the
* CLOCK_MONOTONIC at some time point close to the directive call will be
* stored in this object. Calling the directive with a pointer equal to NULL
* is undefined behaviour.
@@ -681,8 +681,8 @@ void rtems_clock_get_monotonic_coarse_bintime( struct bintime *time_snapshot );
* measured using the CLOCK_MONOTONIC in coarse resolution in seconds and
* microseconds format.
*
- * @param[out] time_snapshot is the pointer to a bintime object. The time
- * elapsed since some fixed time point in the past measured using the
+ * @param[out] time_snapshot is the pointer to a struct timeval object. The
+ * time elapsed since some fixed time point in the past measured using the
* CLOCK_MONOTONIC at some time point close to the directive call will be
* stored in this object. Calling the directive with a pointer equal to NULL
* is undefined behaviour.