* Main thread */
| 214 | * Main thread |
| 215 | */ |
| 216 | static struct thread_msg_req * |
| 217 | thread_msg_alloc(void) |
| 218 | { |
| 219 | size_t size = RTE_MAX(sizeof(struct thread_msg_req), |
| 220 | sizeof(struct thread_msg_rsp)); |
| 221 | |
| 222 | return calloc(1, size); |
| 223 | } |
| 224 | |
| 225 | static void |
| 226 | thread_msg_free(struct thread_msg_rsp *rsp) |
no test coverage detected