| 670 | } |
| 671 | |
| 672 | static int |
| 673 | stats_loop(void *arg) |
| 674 | { |
| 675 | struct stats_lcore_params *stats_lcore = arg; |
| 676 | |
| 677 | while (!__atomic_load_n(&global_exit_flag, __ATOMIC_RELAXED)) { |
| 678 | print_stats(stats_lcore); |
| 679 | rte_delay_ms(500); |
| 680 | } |
| 681 | |
| 682 | return 0; |
| 683 | } |
| 684 | |
| 685 | static inline void |
| 686 | run_encoding(struct lcore_conf *lcore_conf) |
no test coverage detected