| 238 | } |
| 239 | |
| 240 | static void |
| 241 | worker_wait_to_start(void) |
| 242 | { |
| 243 | unsigned lcore_id = rte_lcore_id(); |
| 244 | |
| 245 | rte_wait_until_equal_16(&lcore_state[lcore_id], WORKER_RUN_SIGNAL, __ATOMIC_ACQUIRE); |
| 246 | __atomic_store_n(&lcore_state[lcore_id], WORKER_RUNNING, __ATOMIC_RELEASE); |
| 247 | } |
| 248 | |
| 249 | static void |
| 250 | worker_finish(void) |
no test coverage detected