diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-04-16 19:28:11 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-04-16 19:28:11 +0900 |
commit | ec08c4fd951b9ea5136aaecbaec834ffb665da80 (patch) | |
tree | 84547a0f57001f53d2f874df4d8980d02a1a9b5f /progress.h | |
parent | 26623f8f12331046beb87681d23f324f5d3e4e49 (diff) | |
parent | 5ae18df9d8ed27625f81974c3fb2db179a23ca2d (diff) |
Merge branch 'jh/midx-verify-too-many-packs'
"git multi-pack-index verify" did not scale well with the number of
packfiles, which is being improved.
* jh/midx-verify-too-many-packs:
midx: during verify group objects by packfile to speed verification
midx: add progress indicators in multi-pack-index verify
trace2:data: add trace2 data to midx
progress: add sparse mode to force 100% complete message
Diffstat (limited to 'progress.h')
-rw-r--r-- | progress.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/progress.h b/progress.h index 70a4d4a0d6..7b725acc8d 100644 --- a/progress.h +++ b/progress.h @@ -6,7 +6,10 @@ struct progress; void display_throughput(struct progress *progress, uint64_t total); int display_progress(struct progress *progress, uint64_t n); struct progress *start_progress(const char *title, uint64_t total); +struct progress *start_sparse_progress(const char *title, uint64_t total); struct progress *start_delayed_progress(const char *title, uint64_t total); +struct progress *start_delayed_sparse_progress(const char *title, + uint64_t total); void stop_progress(struct progress **progress); void stop_progress_msg(struct progress **progress, const char *msg); |