MCPcopy Create free account
hub / github.com/coreboot/coreboot / timer_queue_head

Function timer_queue_head

src/lib/timer_queue.c:31–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29}
30
31static inline struct timeout_callback *timer_queue_head(struct timer_queue *tq)
32{
33 if (timer_queue_empty(tq))
34 return NULL;
35 return tq->queue[0];
36}
37
38static int timer_queue_insert(struct timer_queue *tq,
39 struct timeout_callback *tocb)

Callers 1

timer_queue_expiredFunction · 0.85

Calls 1

timer_queue_emptyFunction · 0.85

Tested by

no test coverage detected