X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=bisect.h;h=82f8fc1910a42c5c90ad3312d9aa8f35ef2b992f;hb=95c96d48e65a597cfd2bf7228ddc8c7ca30b55b7;hp=fdba9138773f6f6a4f36655f81965e955e79b3bc;hpb=d1f6c18bd6ea5fd373f9f6356e02854678ffa0fd;p=git.git diff --git a/bisect.h b/bisect.h index fdba91387..82f8fc191 100644 --- a/bisect.h +++ b/bisect.h @@ -7,12 +7,17 @@ extern struct commit_list *find_bisection(struct commit_list *list, extern struct commit_list *filter_skipped(struct commit_list *list, struct commit_list **tried, - int show_all); + int show_all, + int *count, + int *skipped_first); + +extern void print_commit_list(struct commit_list *list, + const char *format_cur, + const char *format_last); /* bisect_show_flags flags in struct rev_list_info */ #define BISECT_SHOW_ALL (1<<0) #define BISECT_SHOW_TRIED (1<<1) -#define BISECT_SHOW_STRINGED (1<<2) struct rev_list_info { struct rev_info *revs; @@ -24,6 +29,8 @@ struct rev_list_info { extern int show_bisect_vars(struct rev_list_info *info, int reaches, int all); -extern int bisect_next_vars(const char *prefix); +extern int bisect_next_all(const char *prefix); + +extern int estimate_bisect_steps(int all); #endif