2009-03-26 07:55:24 +03:00
|
|
|
#ifndef BISECT_H
|
|
|
|
#define BISECT_H
|
|
|
|
|
|
|
|
extern struct commit_list *find_bisection(struct commit_list *list,
|
|
|
|
int *reaches, int *all,
|
|
|
|
int find_all);
|
|
|
|
|
2009-03-26 07:55:49 +03:00
|
|
|
extern struct commit_list *filter_skipped(struct commit_list *list,
|
|
|
|
struct commit_list **tried,
|
2009-06-06 08:41:33 +04:00
|
|
|
int show_all,
|
|
|
|
int *count,
|
|
|
|
int *skipped_first);
|
2009-03-26 07:55:49 +03:00
|
|
|
|
2009-04-19 13:55:43 +04:00
|
|
|
extern void print_commit_list(struct commit_list *list,
|
|
|
|
const char *format_cur,
|
|
|
|
const char *format_last);
|
|
|
|
|
2009-04-07 07:08:42 +04:00
|
|
|
/* bisect_show_flags flags in struct rev_list_info */
|
2009-03-29 13:55:43 +04:00
|
|
|
#define BISECT_SHOW_ALL (1<<0)
|
|
|
|
#define BISECT_SHOW_TRIED (1<<1)
|
|
|
|
|
2009-04-07 00:28:00 +04:00
|
|
|
struct rev_list_info {
|
|
|
|
struct rev_info *revs;
|
2009-04-07 07:08:42 +04:00
|
|
|
int bisect_show_flags;
|
2009-04-07 00:28:00 +04:00
|
|
|
int show_timestamp;
|
|
|
|
int hdr_termination;
|
|
|
|
const char *header_prefix;
|
|
|
|
};
|
|
|
|
|
2009-05-09 19:55:47 +04:00
|
|
|
extern int bisect_next_all(const char *prefix);
|
2009-03-26 07:55:54 +03:00
|
|
|
|
2009-04-19 13:55:38 +04:00
|
|
|
extern int estimate_bisect_steps(int all);
|
|
|
|
|
2009-03-26 07:55:24 +03:00
|
|
|
#endif
|