Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
12 lines (9 sloc)
304 Bytes
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
#ifndef REACHEABLE_H | |
#define REACHEABLE_H | |
struct progress; | |
struct rev_info; | |
int add_unseen_recent_objects_to_traversal(struct rev_info *revs, | |
timestamp_t timestamp); | |
void mark_reachable_objects(struct rev_info *revs, int mark_reflog, | |
timestamp_t mark_recent, struct progress *); | |
#endif |