aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/arch/default/odp_cpu_cycles.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/arch/default/odp_cpu_cycles.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/arch/default/odp_cpu_cycles.c')
-rw-r--r--platform/linux-generic/arch/default/odp_cpu_cycles.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/linux-generic/arch/default/odp_cpu_cycles.c b/platform/linux-generic/arch/default/odp_cpu_cycles.c
index 5d0d5db1d..41436a672 100644
--- a/platform/linux-generic/arch/default/odp_cpu_cycles.c
+++ b/platform/linux-generic/arch/default/odp_cpu_cycles.c
@@ -28,7 +28,7 @@ uint64_t _odp_cpu_cycles(void)
ret = clock_gettime(CLOCK_MONOTONIC_RAW, &time);
if (ret != 0)
- ODP_ABORT("clock_gettime failed\n");
+ _ODP_ABORT("clock_gettime failed\n");
hz = odp_global_ro.system_info.cpu_hz_max[0];