MCPcopy Create free account
hub / github.com/git/git / explore_to_depth

Function explore_to_depth

revision.c:3765–3773  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3763}
3764
3765static 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
3775static void indegree_walk_step(struct rev_info *revs)
3776{

Callers 1

indegree_walk_stepFunction · 0.85

Calls 3

prio_queue_peekFunction · 0.85
commit_graph_generationFunction · 0.85
explore_walk_stepFunction · 0.85

Tested by

no test coverage detected