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

Method enqueue_local

src/iocore/eventsystem/P_ProtectedQueue.h:66–72  ·  view source on GitHub ↗

Called from the same thread (don't need to signal)

Source from the content-addressed store, hash-verified

64
65// Called from the same thread (don't need to signal)
66TS_INLINE void
67ProtectedQueue::enqueue_local(Event *e)
68{
69 ink_assert(!e->in_the_prot_queue && !e->in_the_priority_queue);
70 e->in_the_prot_queue = 1;
71 localQueue.enqueue(e);
72}
73
74TS_INLINE Event *
75ProtectedQueue::dequeue_local()

Callers 9

schedule_immMethod · 0.80
schedule_atMethod · 0.80
schedule_inMethod · 0.80
schedule_everyMethod · 0.80
process_eventMethod · 0.80
scheduleMethod · 0.80
schedule_entireMethod · 0.80
scheduleMethod · 0.80
schedule_localMethod · 0.80

Calls 1

enqueueMethod · 0.45

Tested by

no test coverage detected