| 3965 | } |
| 3966 | |
| 3967 | void rev_info_commit_list_to_queue(struct rev_info *revs) |
| 3968 | { |
| 3969 | while (revs->commits) |
| 3970 | prio_queue_put(&revs->commit_queue, pop_commit(&revs->commits)); |
| 3971 | } |
| 3972 | |
| 3973 | |
| 3974 | int prepare_revision_walk(struct rev_info *revs) |
no test coverage detected