MCPcopy Create free account
hub / github.com/esnet/iperf / tmr_cancel

Function tmr_cancel

src/timer.c:214–223  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

212
213
214void
215tmr_cancel( Timer* t )
216{
217 /* Remove it from the active list. */
218 list_remove( t );
219 /* And put it on the free list. */
220 t->next = free_timers;
221 free_timers = t;
222 t->prev = NULL;
223}
224
225
226void

Callers 6

iperf_free_testFunction · 0.85
iperf_reset_testFunction · 0.85
iperf_free_streamFunction · 0.85
cleanup_serverFunction · 0.85
tmr_runFunction · 0.85
tmr_destroyFunction · 0.85

Calls 1

list_removeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…