MCPcopy Create free account
hub / github.com/F-Stack/f-stack / rte_timer_stop_sync

Function rte_timer_stop_sync

dpdk/lib/timer/rte_timer.c:638–643  ·  view source on GitHub ↗

loop until rte_timer_stop() succeed */

Source from the content-addressed store, hash-verified

636
637/* loop until rte_timer_stop() succeed */
638void
639rte_timer_stop_sync(struct rte_timer *tim)
640{
641 while (rte_timer_stop(tim) != 0)
642 rte_pause();
643}
644
645/* Test the PENDING status of the timer handle tim */
646int

Callers 4

ena_stopFunction · 0.85
timer_stress_main_loopFunction · 0.85
timer_basic_cbFunction · 0.85
test_timerFunction · 0.85

Calls 2

rte_timer_stopFunction · 0.85
rte_pauseFunction · 0.50

Tested by 3

timer_stress_main_loopFunction · 0.68
timer_basic_cbFunction · 0.68
test_timerFunction · 0.68