]> git.ipfire.org Git - thirdparty/git.git/blame_incremental - progress.h
Git 2.45
[thirdparty/git.git] / progress.h
... / ...
CommitLineData
1#ifndef PROGRESS_H
2#define PROGRESS_H
3
4struct progress;
5
6#ifdef GIT_TEST_PROGRESS_ONLY
7
8extern int progress_testing;
9extern uint64_t progress_test_ns;
10void progress_test_force_update(void);
11
12#endif
13
14void display_throughput(struct progress *progress, uint64_t total);
15void display_progress(struct progress *progress, uint64_t n);
16struct progress *start_progress(const char *title, uint64_t total);
17struct progress *start_sparse_progress(const char *title, uint64_t total);
18struct progress *start_delayed_progress(const char *title, uint64_t total);
19struct progress *start_delayed_sparse_progress(const char *title,
20 uint64_t total);
21void stop_progress(struct progress **progress);
22void stop_progress_msg(struct progress **progress, const char *msg);
23
24#endif