aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/odp_sorted_list.c
diff options
context:
space:
mode:
authorMatias Elo <matias.elo@nokia.com>2022-09-23 13:15:58 +0300
committerMatias Elo <matias.elo@nokia.com>2022-10-07 14:12:02 +0300
commit32a630e3898a0306f78b3b6430663873a93de4b5 (patch)
treedb9f83e0098e1417dfc1946661e667540ad016b4 /platform/linux-generic/odp_sorted_list.c
parent96e86e6f9a9fe9a63f2609c28af6e41ddbf1a9d9 (diff)
linux-gen: debug: prefix implementation internal debug macros
Prefix implementation internal debug macro names with underscore. Signed-off-by: Matias Elo <matias.elo@nokia.com> Reviewed-by: Petri Savolainen <petri.savolainen@nokia.com>
Diffstat (limited to 'platform/linux-generic/odp_sorted_list.c')
-rw-r--r--platform/linux-generic/odp_sorted_list.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/platform/linux-generic/odp_sorted_list.c b/platform/linux-generic/odp_sorted_list.c
index 8f998238d..1091b7415 100644
--- a/platform/linux-generic/odp_sorted_list.c
+++ b/platform/linux-generic/odp_sorted_list.c
@@ -262,12 +262,12 @@ void _odp_sorted_list_stats_print(_odp_int_sorted_pool_t sorted_pool)
sorted_pool_t *pool;
pool = (sorted_pool_t *)(uintptr_t)sorted_pool;
- ODP_PRINT("sorted_pool=0x%" PRIX64 "\n", sorted_pool);
- ODP_PRINT(" max_sorted_lists=%u next_list_idx=%u\n",
- pool->max_sorted_lists, pool->next_list_idx);
- ODP_PRINT(" total_inserts=%" PRIu64 " total_deletes=%" PRIu64
- " total_removes=%" PRIu64 "\n", pool->total_inserts,
- pool->total_deletes, pool->total_removes);
+ _ODP_PRINT("sorted_pool=0x%" PRIX64 "\n", sorted_pool);
+ _ODP_PRINT(" max_sorted_lists=%u next_list_idx=%u\n",
+ pool->max_sorted_lists, pool->next_list_idx);
+ _ODP_PRINT(" total_inserts=%" PRIu64 " total_deletes=%" PRIu64
+ " total_removes=%" PRIu64 "\n", pool->total_inserts,
+ pool->total_deletes, pool->total_removes);
}
void _odp_sorted_pool_destroy(_odp_int_sorted_pool_t sorted_pool)