@@ -48,6 +48,7 @@ int odp_classification_init_global(void);
int odp_classification_term_global(void);
int odp_queue_init_global(void);
+int odp_queue_term_global(void);
int odp_crypto_init_global(void);
int odp_crypto_term_global(void);
@@ -96,6 +96,11 @@ int odp_term_global(void)
return -1;
}
+ if (odp_queue_term_global()) {
+ ODP_ERR("ODP queue term failed.\n");
+ return -1;
+ }
+
return 0;
}
@@ -128,6 +128,31 @@ int odp_queue_init_global(void)
return 0;
}
+int odp_queue_term_global(void)
+{
+ odp_shm_t shm;
+ int ret = 0;
+ queue_entry_t *queue;
+ int i;
+
+ for (i = 0; i < ODP_CONFIG_QUEUES; i++) {
+ queue = &queue_tbl->queue[i];
+ LOCK(&queue->s.lock);
+ if (queue->s.status != QUEUE_STATUS_FREE) {
+ ODP_ERR("Not destroyed queue: %s\n", queue->s.name);
+ ret = -1;
+ }
+ UNLOCK(&queue->s.lock);
+ }
+
+ shm = odp_shm_lookup("odp_queues");
+ if (shm == ODP_SHM_INVALID)
+ return -1;
+ ret = odp_shm_free(shm);
+
+ return ret;
+}
+
odp_queue_type_t odp_queue_type(odp_queue_t handle)
{
queue_entry_t *queue;