| 75 | } |
| 76 | |
| 77 | static void finish_parallel_checkout(void) |
| 78 | { |
| 79 | if (parallel_checkout.status == PC_UNINITIALIZED) |
| 80 | BUG("cannot finish parallel checkout: not initialized yet"); |
| 81 | |
| 82 | free(parallel_checkout.items); |
| 83 | memset(¶llel_checkout, 0, sizeof(parallel_checkout)); |
| 84 | } |
| 85 | |
| 86 | static int is_eligible_for_parallel_checkout(const struct cache_entry *ce, |
| 87 | const struct conv_attrs *ca) |
no outgoing calls
no test coverage detected