| 154 | } |
| 155 | |
| 156 | static inline int |
| 157 | thread_is_running(uint32_t thread_id) |
| 158 | { |
| 159 | enum rte_lcore_state_t thread_state; |
| 160 | |
| 161 | thread_state = rte_eal_get_lcore_state(thread_id); |
| 162 | return (thread_state == RUNNING) ? 1 : 0; |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | * Pipeline is running when: |
no test coverage detected