@@ -298,6 +298,19 @@ odp_schedule_prio_t odp_queue_sched_prio(odp_queue_t queue);
odp_schedule_group_t odp_queue_sched_group(odp_queue_t queue);
/**
+ * Get printable value for an odp_queue_t
+ *
+ * @param hdl odp_queue_t handle to be printed
+ * @return uint64_t value that can be used to print/display this
+ * handle
+ *
+ * @note This routine is intended to be used for diagnostic purposes
+ * to enable applications to generate a printable value that represents
+ * an odp_queue_t handle.
+ */
+uint64_t odp_queue_to_u64(odp_queue_t hdl);
+
+/**
* @}
*/
Add function odp_queue_to_u64() Signed-off-by: Bill Fischofer <bill.fischofer@linaro.org> --- include/odp/api/queue.h | 13 +++++++++++++ 1 file changed, 13 insertions(+)