| 1610 | } app_index_thread_t; |
| 1611 | |
| 1612 | static void *app_index_thread(void *opaque) { |
| 1613 | app_index_thread_t *request = opaque; |
| 1614 | request->result = |
| 1615 | cbm_daemon_application_index(request->application, request->project, request->root); |
| 1616 | return NULL; |
| 1617 | } |
| 1618 | |
| 1619 | typedef struct { |
| 1620 | bool had_cache; |
nothing calls this directly
no test coverage detected