aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJere Leppänen <jere.leppanen@nokia.com>2023-01-13 17:52:16 +0200
committerMatias Elo <matias.elo@nokia.com>2023-04-12 13:38:07 +0300
commit5e81062dda925f18df79f24a9d15133b05379e51 (patch)
tree37598c97f81f53f14d3fee6b07e303e42ac9a7ee /include
parent7ff4f7e7727bef783cc517367207c8dea4116729 (diff)
api: queue: mention that queue to be destroyed must not be in use in classifier or timer
Add classifier and timer to the list of examples of APIs where the queue to be destroyed must not be in use. Signed-off-by: Jere Leppänen <jere.leppanen@nokia.com> Reviewed-by: Petri Savolainen <petri.savolainen@nokia.com> Reviewed-by: Kiran Kumar K <kirankumark@marvell.com>
Diffstat (limited to 'include')
-rw-r--r--include/odp/api/spec/queue.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/odp/api/spec/queue.h b/include/odp/api/spec/queue.h
index 65cf3d1ee..0315d1312 100644
--- a/include/odp/api/spec/queue.h
+++ b/include/odp/api/spec/queue.h
@@ -50,9 +50,9 @@ odp_queue_t odp_queue_create(const char *name, const odp_queue_param_t *param);
* Destroy ODP queue
*
* Destroys ODP queue. The queue must be empty and detached from other
- * ODP API (crypto, pktio, etc). Application must ensure that no other
- * operations on this queue are invoked in parallel. Otherwise behavior
- * is undefined.
+ * ODP API (crypto, pktio, classifier, timer, etc). Application must ensure
+ * that no other operations on this queue are invoked in parallel. Otherwise
+ * behavior is undefined.
*
* @param queue Queue handle
*