MCPcopy Create free account
hub / github.com/F-Stack/f-stack / thread_msg_send

Function thread_msg_send

dpdk/examples/ip_pipeline/thread.c:443–452  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

441}
442
443static inline void
444thread_msg_send(struct rte_ring *msgq_rsp,
445 struct thread_msg_rsp *rsp)
446{
447 int status;
448
449 do {
450 status = rte_ring_sp_enqueue(msgq_rsp, rsp);
451 } while (status == -ENOBUFS);
452}
453
454static struct thread_msg_rsp *
455thread_msg_handle_pipeline_enable(struct thread_data *t,

Callers 1

thread_msg_handleFunction · 0.70

Calls 1

rte_ring_sp_enqueueFunction · 0.85

Tested by

no test coverage detected