MCPcopy Create free account
hub / github.com/apache/trafficserver / l_remove

Function l_remove

tools/http_load/timers.c:92–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90}
91
92static void
93l_remove(Timer *t)
94{
95 int h = t->hash;
96
97 if (t->prev == (Timer *)0)
98 timers[h] = t->next;
99 else
100 t->prev->next = t->next;
101 if (t->next != (Timer *)0)
102 t->next->prev = t->prev;
103}
104
105static void
106l_resort(Timer *t)

Callers 2

l_resortFunction · 0.85
tmr_cancelFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected