From: Barry Spinney <[email protected]> This patch adds a call from odp_init.c to _odp_int_name_tbl_init().
Signed-off-by: Barry Spinney <[email protected]> Signed-off-by: Bill Fischofer <[email protected]> --- platform/linux-generic/include/odp_internal.h | 3 ++- platform/linux-generic/include/odp_timer_wheel_internal.h | 8 ++++---- platform/linux-generic/odp_init.c | 1 + 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/platform/linux-generic/include/odp_internal.h b/platform/linux-generic/include/odp_internal.h index d7b71ca..991f33f 100644 --- a/platform/linux-generic/include/odp_internal.h +++ b/platform/linux-generic/include/odp_internal.h @@ -4,7 +4,6 @@ * SPDX-License-Identifier: BSD-3-Clause */ - /** * @file * @@ -107,6 +106,8 @@ int odp_time_term_global(void); int odp_tm_init_global(void); +void _odp_int_name_tbl_init(void); + void _odp_flush_caches(void); int odp_cpuinfo_parser(FILE *file, odp_system_info_t *sysinfo); diff --git a/platform/linux-generic/include/odp_timer_wheel_internal.h b/platform/linux-generic/include/odp_timer_wheel_internal.h index 0e5828f..54abb77 100644 --- a/platform/linux-generic/include/odp_timer_wheel_internal.h +++ b/platform/linux-generic/include/odp_timer_wheel_internal.h @@ -16,15 +16,15 @@ extern "C" { #include <stdint.h> #include <odp_api.h> -/* Note that ALL times in this API are in units of processor/cpu clock - * cycles! - */ typedef uint64_t _odp_timer_wheel_t; #define _ODP_INT_TIMER_WHEEL_INVALID 0 _odp_timer_wheel_t _odp_timer_wheel_create(uint32_t max_concurrent_timers, - uint64_t current_time); + void *tm_system); + +void _odp_timer_wheel_start(_odp_timer_wheel_t timer_wheel, + uint64_t current_time); /* _odp_int_timer_wheel_curr_time_update should be called before the first * call to _odp_int_timer_wheel_insert, _odp_int_timer_wheel_next, etc.. diff --git a/platform/linux-generic/odp_init.c b/platform/linux-generic/odp_init.c index a8c91a5..fdc5981 100644 --- a/platform/linux-generic/odp_init.c +++ b/platform/linux-generic/odp_init.c @@ -96,6 +96,7 @@ int odp_init_global(const odp_init_t *params, return -1; } + _odp_int_name_tbl_init(); return 0; init_failed: -- 2.5.0 _______________________________________________ lng-odp mailing list [email protected] https://lists.linaro.org/mailman/listinfo/lng-odp
