diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 09:49:36 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 09:49:36 +0000 |
commit | 5ec6074f0633939fd17d94111d10c6c6b062978c (patch) | |
tree | bfaa17b5a64abc66c918e9c70969e519d9e1df8e /progress.h | |
parent | Initial commit. (diff) | |
download | git-upstream/1%2.30.2.tar.xz git-upstream/1%2.30.2.zip |
Adding upstream version 1:2.30.2.upstream/1%2.30.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'progress.h')
-rw-r--r-- | progress.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/progress.h b/progress.h new file mode 100644 index 0000000..f1913ac --- /dev/null +++ b/progress.h @@ -0,0 +1,24 @@ +#ifndef PROGRESS_H +#define PROGRESS_H + +struct progress; + +#ifdef GIT_TEST_PROGRESS_ONLY + +extern int progress_testing; +extern uint64_t progress_test_ns; +void progress_test_force_update(void); + +#endif + +void display_throughput(struct progress *progress, uint64_t total); +void 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); + +#endif |