numam-dpdk/lib/librte_timer/rte_timer_version.map
Erik Gabriel Carrillo 821c51267b timer: add function to stop all timers in a list
Add a function to the timer API that allows a caller to traverse a
specified set of timer lists, stopping each timer in each list,
and invoking a callback function.

Signed-off-by: Erik Gabriel Carrillo <erik.g.carrillo@intel.com>
2019-04-17 20:05:30 +02:00

39 lines
584 B
Plaintext

DPDK_2.0 {
global:
rte_timer_dump_stats;
rte_timer_init;
rte_timer_manage;
rte_timer_pending;
rte_timer_reset;
rte_timer_reset_sync;
rte_timer_stop;
rte_timer_stop_sync;
rte_timer_subsystem_init;
local: *;
};
DPDK_19.05 {
global:
rte_timer_dump_stats;
rte_timer_manage;
rte_timer_reset;
rte_timer_stop;
rte_timer_subsystem_init;
} DPDK_2.0;
EXPERIMENTAL {
global:
rte_timer_alt_dump_stats;
rte_timer_alt_manage;
rte_timer_alt_reset;
rte_timer_alt_stop;
rte_timer_data_alloc;
rte_timer_data_dealloc;
rte_timer_stop_all;
rte_timer_subsystem_finalize;
};