aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/include/odp_timer_internal.h
diff options
context:
space:
mode:
authorJere Leppänen <jere.leppanen@nokia.com>2021-02-22 21:54:31 +0200
committerPetri Savolainen <petri.savolainen@nokia.com>2021-02-26 15:09:58 +0200
commit706e1e6b24a40bfd9c2b07f084af47532bc2141f (patch)
tree29e51bc1e773a918dcd5f1951ed66116e046a690 /platform/linux-generic/include/odp_timer_internal.h
parent07e583bcbd09ba4852193e6732136148fef1022b (diff)
linux-gen: rename remaining global symbols in the static library
Rename the rest of the global symbols in the static library that do not have the "_odp_" prefix. Fixes: https://github.com/OpenDataPlane/odp/issues/805 Signed-off-by: Jere Leppänen <jere.leppanen@nokia.com> Reviewed-by: Petri Savolainen <petri.savolainen@nokia.com>
Diffstat (limited to 'platform/linux-generic/include/odp_timer_internal.h')
-rw-r--r--platform/linux-generic/include/odp_timer_internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/linux-generic/include/odp_timer_internal.h b/platform/linux-generic/include/odp_timer_internal.h
index 0c2a0fe4b..23fd54bf9 100644
--- a/platform/linux-generic/include/odp_timer_internal.h
+++ b/platform/linux-generic/include/odp_timer_internal.h
@@ -40,13 +40,13 @@ typedef struct {
/* A larger decrement value should be used after receiving events compared to
* an 'empty' call. */
-void _timer_run_inline(int dec);
+void _odp_timer_run_inline(int dec);
/* Static inline wrapper to minimize modification of schedulers. */
static inline void timer_run(int dec)
{
if (odp_global_rw->inline_timers)
- _timer_run_inline(dec);
+ _odp_timer_run_inline(dec);
}
#endif