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

Function list_remove

src/timer.c:99–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97
98
99static void
100list_remove( Timer* t )
101{
102 if ( t->prev == NULL )
103 timers = t->next;
104 else
105 t->prev->next = t->next;
106 if ( t->next != NULL )
107 t->next->prev = t->prev;
108}
109
110
111static void

Callers 2

list_resortFunction · 0.85
tmr_cancelFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…