| 470 | }; |
| 471 | |
| 472 | static void *lazy_dir_thread_proc(void *_data) |
| 473 | { |
| 474 | struct lazy_dir_thread_data *d = _data; |
| 475 | struct strbuf prefix = STRBUF_INIT; |
| 476 | handle_range_1(d->istate, d->k_start, d->k_end, NULL, &prefix, d->lazy_entries); |
| 477 | strbuf_release(&prefix); |
| 478 | return NULL; |
| 479 | } |
| 480 | |
| 481 | struct lazy_name_thread_data { |
| 482 | pthread_t pthread; |
nothing calls this directly
no test coverage detected