@@ -225,7 +225,7 @@ rcl_timer_fini(rcl_timer_t * timer);
225225 * \param[inout] timer the handle to the timer to call
226226 * \return #RCL_RET_OK if the timer was called successfully, or
227227 * \return #RCL_RET_INVALID_ARGUMENT if any arguments are invalid, or
228- * \return #RCL_RET_TIMER_INVALID if the timer is invalid, or
228+ * \return #RCL_RET_TIMER_INVALID if the timer->impl is invalid, or
229229 * \return #RCL_RET_TIMER_CANCELED if the timer has been canceled, or
230230 * \return #RCL_RET_ERROR an unspecified error occur.
231231 */
@@ -252,7 +252,6 @@ rcl_timer_call(rcl_timer_t * timer);
252252 * \param[out] clock the rcl_clock_t * in which the clock is stored
253253 * \return #RCL_RET_OK if the period was retrieved successfully, or
254254 * \return #RCL_RET_INVALID_ARGUMENT if any arguments are invalid, or
255- * \return #RCL_RET_TIMER_INVALID if the timer is invalid, or
256255 * \return #RCL_RET_ERROR an unspecified error occur.
257256 */
258257RCL_PUBLIC
@@ -282,7 +281,7 @@ rcl_timer_clock(rcl_timer_t * timer, rcl_clock_t ** clock);
282281 * \param[out] is_ready the bool used to store the result of the calculation
283282 * \return #RCL_RET_OK if the last call time was retrieved successfully, or
284283 * \return #RCL_RET_INVALID_ARGUMENT if any arguments are invalid, or
285- * \return #RCL_RET_TIMER_INVALID if the timer is invalid, or
284+ * \return #RCL_RET_TIMER_INVALID if the timer->impl is invalid, or
286285 * \return #RCL_RET_ERROR an unspecified error occur.
287286 */
288287RCL_PUBLIC
@@ -317,7 +316,7 @@ rcl_timer_is_ready(const rcl_timer_t * timer, bool * is_ready);
317316 * \param[out] time_until_next_call the output variable for the result
318317 * \return #RCL_RET_OK if the timer until next call was successfully calculated, or
319318 * \return #RCL_RET_INVALID_ARGUMENT if any arguments are invalid, or
320- * \return #RCL_RET_TIMER_INVALID if the timer is invalid, or
319+ * \return #RCL_RET_TIMER_INVALID if the timer->impl is invalid, or
321320 * \return #RCL_RET_TIMER_CANCELED if the timer is canceled, or
322321 * \return #RCL_RET_ERROR an unspecified error occur.
323322 */
@@ -350,7 +349,7 @@ rcl_timer_get_time_until_next_call(const rcl_timer_t * timer, int64_t * time_unt
350349 * \param[out] time_since_last_call the struct in which the time is stored
351350 * \return #RCL_RET_OK if the last call time was retrieved successfully, or
352351 * \return #RCL_RET_INVALID_ARGUMENT if any arguments are invalid, or
353- * \return #RCL_RET_TIMER_INVALID if the timer is invalid, or
352+ * \return #RCL_RET_TIMER_INVALID if the timer->impl is invalid, or
354353 * \return #RCL_RET_ERROR an unspecified error occur.
355354 */
356355RCL_PUBLIC
@@ -377,6 +376,7 @@ rcl_timer_get_time_since_last_call(const rcl_timer_t * timer, int64_t * time_sin
377376 * \param[out] period the int64_t in which the period is stored
378377 * \return #RCL_RET_OK if the period was retrieved successfully, or
379378 * \return #RCL_RET_INVALID_ARGUMENT if any arguments are invalid, or
379+ * \return #RCL_RET_TIMER_INVALID if the timer->impl is invalid, or
380380 * \return #RCL_RET_ERROR an unspecified error occur.
381381 */
382382RCL_PUBLIC
@@ -407,6 +407,7 @@ rcl_timer_get_period(const rcl_timer_t * timer, int64_t * period);
407407 * \param[out] old_period the int64_t in which the previous period is stored
408408 * \return #RCL_RET_OK if the period was retrieved successfully, or
409409 * \return #RCL_RET_INVALID_ARGUMENT if any arguments are invalid, or
410+ * \return #RCL_RET_TIMER_INVALID if the timer->impl is invalid, or
410411 * \return #RCL_RET_ERROR an unspecified error occur.
411412 */
412413RCL_PUBLIC
@@ -484,7 +485,6 @@ rcl_timer_exchange_callback(rcl_timer_t * timer, const rcl_timer_callback_t new_
484485 * \param[inout] timer the timer to be canceled
485486 * \return #RCL_RET_OK if the last call time was retrieved successfully, or
486487 * \return #RCL_RET_INVALID_ARGUMENT if any arguments are invalid, or
487- * \return #RCL_RET_TIMER_INVALID if the timer is invalid, or
488488 * \return #RCL_RET_ERROR an unspecified error occur.
489489 */
490490RCL_PUBLIC
@@ -513,6 +513,7 @@ rcl_timer_cancel(rcl_timer_t * timer);
513513 * \param[out] is_canceled storage for the is canceled bool
514514 * \return #RCL_RET_OK if the last call time was retrieved successfully, or
515515 * \return #RCL_RET_INVALID_ARGUMENT if any arguments are invalid, or
516+ * \return #RCL_RET_TIMER_INVALID if the timer->impl is invalid, or
516517 * \return #RCL_RET_ERROR an unspecified error occur.
517518 */
518519RCL_PUBLIC
@@ -538,7 +539,6 @@ rcl_timer_is_canceled(const rcl_timer_t * timer, bool * is_canceled);
538539 * \param[inout] timer the timer to be reset
539540 * \return #RCL_RET_OK if the last call time was retrieved successfully, or
540541 * \return #RCL_RET_INVALID_ARGUMENT if any arguments are invalid, or
541- * \return #RCL_RET_TIMER_INVALID if the timer is invalid, or
542542 * \return #RCL_RET_ERROR an unspecified error occur.
543543 */
544544RCL_PUBLIC
0 commit comments