| 3808 | } |
| 3809 | |
| 3810 | static void compute_indegrees_to_depth(struct rev_info *revs, |
| 3811 | timestamp_t gen_cutoff) |
| 3812 | { |
| 3813 | struct topo_walk_info *info = revs->topo_walk_info; |
| 3814 | struct commit *c; |
| 3815 | while ((c = prio_queue_peek(&info->indegree_queue)) && |
| 3816 | commit_graph_generation(c) >= gen_cutoff) |
| 3817 | indegree_walk_step(revs); |
| 3818 | } |
| 3819 | |
| 3820 | static void release_revisions_topo_walk_info(struct topo_walk_info *info) |
| 3821 | { |
no test coverage detected