| 3763 | } |
| 3764 | |
| 3765 | static void explore_to_depth(struct rev_info *revs, |
| 3766 | timestamp_t gen_cutoff) |
| 3767 | { |
| 3768 | struct topo_walk_info *info = revs->topo_walk_info; |
| 3769 | struct commit *c; |
| 3770 | while ((c = prio_queue_peek(&info->explore_queue)) && |
| 3771 | commit_graph_generation(c) >= gen_cutoff) |
| 3772 | explore_walk_step(revs); |
| 3773 | } |
| 3774 | |
| 3775 | static void indegree_walk_step(struct rev_info *revs) |
| 3776 | { |
no test coverage detected