| 503 | } th_server_t; |
| 504 | |
| 505 | static void *th_server_thread(void *arg) { |
| 506 | cbm_http_server_run((cbm_http_server_t *)arg); |
| 507 | return NULL; |
| 508 | } |
| 509 | |
| 510 | static int th_server_thread_start(cbm_thread_t *thread, cbm_http_server_t *server) { |
| 511 | if (!cbm_http_server_schedule_run(server)) |
nothing calls this directly
no test coverage detected