diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-04-23 12:52:54 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-04-23 12:52:55 -0700 |
commit | ba8e6326f16748d67fbeda65ffde4729760c64f0 (patch) | |
tree | cfd553f836c093db7d9f495127d972c688a398b0 /commit.h | |
parent | 58bbace89d3e94a20faae4df0d20d57574dff6e1 (diff) | |
parent | 7365c95d2d67cbbb74c2040918d2ecde06231d93 (diff) | |
download | git-ba8e6326f16748d67fbeda65ffde4729760c64f0.tar.gz |
Merge branch 'rs/commit-list-sort-in-batch'
Setting up a revision traversal with many starting points was inefficient
as these were placed in a date-order priority queue one-by-one.
By René Scharfe (3) and Junio C Hamano (1)
* rs/commit-list-sort-in-batch:
mergesort: rename it to llist_mergesort()
revision: insert unsorted, then sort in prepare_revision_walk()
commit: use mergesort() in commit_list_sort_by_date()
add mergesort() for linked lists
Diffstat (limited to 'commit.h')
-rw-r--r-- | commit.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -57,6 +57,7 @@ unsigned commit_list_count(const struct commit_list *l); struct commit_list *commit_list_insert_by_date(struct commit *item, struct commit_list **list); void commit_list_sort_by_date(struct commit_list **list); +void commit_list_reverse(struct commit_list **list_p); void free_commit_list(struct commit_list *list); |