| 314 | } |
| 315 | |
| 316 | static void |
| 317 | signal_handler(int signum) |
| 318 | { |
| 319 | /* USR1 signal, stop testing */ |
| 320 | if (signum == SIGUSR1) { |
| 321 | stop = 1; |
| 322 | } |
| 323 | |
| 324 | /* USR2 signal, print stats */ |
| 325 | if (signum == SIGUSR2) |
| 326 | stats_display(0); |
| 327 | } |
| 328 | #endif |
| 329 | |
| 330 | struct rte_mbuf **tx_burst; |
nothing calls this directly
no test coverage detected