aboutsummaryrefslogtreecommitdiff
path: root/include/odp/api/queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/odp/api/queue.h')
-rw-r--r--include/odp/api/queue.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/include/odp/api/queue.h b/include/odp/api/queue.h
index 3ee69fcfe..87dc4a10c 100644
--- a/include/odp/api/queue.h
+++ b/include/odp/api/queue.h
@@ -54,11 +54,17 @@ extern "C" {
/**
* @def ODP_QUEUE_TYPE_SCHED
* Scheduled queue
+ *
+ * Scheduled queues are connected to the scheduler. Application must not
+ * dequeue events directly from these queues but use the scheduler instead.
*/
/**
- * @def ODP_QUEUE_TYPE_POLL
- * Not scheduled queue
+ * @def ODP_QUEUE_TYPE_PLAIN
+ * Plain queue
+ *
+ * Plain queues offer simple FIFO storage of events. Application may dequeue
+ * directly from these queues.
*/
/**