| 213 | static thread_local MasterEventEngine* g_engine = nullptr; |
| 214 | |
| 215 | static int poll_engine(void* arg) { |
| 216 | assert(g_engine != nullptr); |
| 217 | g_engine->wait_and_fire_events(0); |
| 218 | thread_yield(); |
| 219 | return 0; |
| 220 | } |
| 221 | |
| 222 | int fstack_dpdk_init() { |
| 223 | LOG_INFO("Init f-stack dpdk engine"); |
nothing calls this directly
no test coverage detected