* Main thread */
| 729 | * Main thread |
| 730 | */ |
| 731 | static struct pipeline_msg_req * |
| 732 | pipeline_msg_alloc(void) |
| 733 | { |
| 734 | size_t size = RTE_MAX(sizeof(struct pipeline_msg_req), |
| 735 | sizeof(struct pipeline_msg_rsp)); |
| 736 | |
| 737 | return calloc(1, size); |
| 738 | } |
| 739 | |
| 740 | static void |
| 741 | pipeline_msg_free(struct pipeline_msg_rsp *rsp) |
no test coverage detected