aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMatias Elo <matias.elo@nokia.com>2023-03-21 16:40:13 +0200
committerMatias Elo <matias.elo@nokia.com>2023-04-13 10:44:33 +0300
commit82ab6343421e0a7bd43cdc06e4028d3678d981b9 (patch)
tree0b17e727b8bd38d80168f44a6d4ab32af86ab5f7 /include
parent0f3fd641b091964d13565be3da283c4a6505f3e0 (diff)
api: timer: remove references to errno
Remove legacy references to errno from timer API. Signed-off-by: Matias Elo <matias.elo@nokia.com> Reviewed-by: Petri Savolainen <petri.savolainen@nokia.com> Reviewed-by: Jerin Jacob <jerinj@marvell.com>
Diffstat (limited to 'include')
-rw-r--r--include/odp/api/spec/timer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/odp/api/spec/timer.h b/include/odp/api/spec/timer.h
index 0e1f07f09..7982e391b 100644
--- a/include/odp/api/spec/timer.h
+++ b/include/odp/api/spec/timer.h
@@ -123,7 +123,7 @@ void odp_timer_pool_param_init(odp_timer_pool_param_t *param);
* @param params Timer pool parameters. The content will be copied.
*
* @return Timer pool handle on success
- * @retval ODP_TIMER_POOL_INVALID on failure and errno set
+ * @retval ODP_TIMER_POOL_INVALID on failure
*/
odp_timer_pool_t odp_timer_pool_create(const char *name,
const odp_timer_pool_param_t *params);
@@ -209,7 +209,7 @@ int odp_timer_pool_info(odp_timer_pool_t timer_pool,
* @param user_ptr User defined pointer or NULL to be copied to timeouts
*
* @return Timer handle on success
- * @retval ODP_TIMER_INVALID on failure and errno set.
+ * @retval ODP_TIMER_INVALID on failure
*/
odp_timer_t odp_timer_alloc(odp_timer_pool_t timer_pool, odp_queue_t queue, const void *user_ptr);