-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This allows for better management of progress "object" existence, as well as making the progress display implementation more independent from its callers. Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
- Loading branch information
Nicolas Pitre
authored and
Junio C Hamano
committed
Oct 30, 2007
1 parent
0e54913
commit dc6a075
Showing
7 changed files
with
57 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,12 @@ | ||
#ifndef PROGRESS_H | ||
#define PROGRESS_H | ||
|
||
struct progress { | ||
const char *title; | ||
int last_value; | ||
unsigned total; | ||
unsigned last_percent; | ||
unsigned delay; | ||
unsigned delayed_percent_treshold; | ||
}; | ||
struct progress; | ||
|
||
int display_progress(struct progress *progress, unsigned n); | ||
void start_progress(struct progress *progress, const char *title, | ||
unsigned total); | ||
void start_progress_delay(struct progress *progress, const char *title, | ||
unsigned total, unsigned percent_treshold, unsigned delay); | ||
void stop_progress(struct progress *progress); | ||
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); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters