diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-11-14 14:04:19 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-14 14:04:19 -0800 |
commit | 03edb0a753fbdbfd14ae42a26ffd1e7608919c45 (patch) | |
tree | 7417d5812b2c6c4969b69a31a42393982d0d9ddf /progress.h | |
parent | Merge branch 'js/rebase-detached' (diff) | |
parent | nicer display of thin pack completion (diff) | |
download | tgif-03edb0a753fbdbfd14ae42a26ffd1e7608919c45.tar.xz |
Merge branch 'np/progress'
* np/progress:
nicer display of thin pack completion
make display of total transferred fully accurate
remove dead code from the csum-file interface
git-fetch: be even quieter.
make display of total transferred more accurate
sideband.c: ESC is spelled '\033' not '\e' for portability.
fix display overlap between remote and local progress
Diffstat (limited to 'progress.h')
-rw-r--r-- | progress.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/progress.h b/progress.h index 61cb68dfa5..611e4c4d42 100644 --- a/progress.h +++ b/progress.h @@ -3,11 +3,12 @@ struct progress; -void display_throughput(struct progress *progress, unsigned long n); +void display_throughput(struct progress *progress, off_t total); int display_progress(struct progress *progress, unsigned n); struct progress *start_progress(const char *title, unsigned total); struct progress *start_progress_delay(const char *title, unsigned total, unsigned percent_treshold, unsigned delay); void stop_progress(struct progress **progress); +void stop_progress_msg(struct progress **progress, const char *msg); #endif |