| 191 | } |
| 192 | |
| 193 | void *executeEventLoop() { |
| 194 | /* The event loop. Put other processing you need done continually in here */ |
| 195 | while (1 != g_end_stack) { |
| 196 | if (kEipStatusOk != NetworkHandlerProcessOnce() ) { |
| 197 | OPENER_TRACE_ERR("Error in NetworkHandler loop! Exiting OpENer!\n"); |
| 198 | break; |
| 199 | } |
| 200 | } |
| 201 | } |
no test coverage detected