From: René Scharfe Date: Mon, 25 Dec 2017 17:44:58 +0000 (+0100) Subject: object: add clear_commit_marks_all() X-Git-Tag: v2.16.2~7^2~5 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/4ad315fc99d906364c9a5d75a319752cf4056ae5?ds=inline;hp=--cc object: add clear_commit_marks_all() Add a function for clearing the commit marks of all in-core commit objects. It's similar to clear_object_flags(), but more precise, since it leaves the other object types alone. It still has to iterate through them, though. Signed-off-by: Rene Scharfe Signed-off-by: Junio C Hamano --- 4ad315fc99d906364c9a5d75a319752cf4056ae5 diff --git a/object.c b/object.c index b9a4a0e501..0afdfd19b7 100644 --- a/object.c +++ b/object.c @@ -434,3 +434,14 @@ void clear_object_flags(unsigned flags) obj->flags &= ~flags; } } + +void clear_commit_marks_all(unsigned int flags) +{ + int i; + + for (i = 0; i < obj_hash_size; i++) { + struct object *obj = obj_hash[i]; + if (obj && obj->type == OBJ_COMMIT) + obj->flags &= ~flags; + } +} diff --git a/object.h b/object.h index df8abe96f7..1111f64dd9 100644 --- a/object.h +++ b/object.h @@ -148,4 +148,9 @@ void object_array_clear(struct object_array *array); void clear_object_flags(unsigned flags); +/* + * Clear the specified object flags from all in-core commit objects. + */ +extern void clear_commit_marks_all(unsigned int flags); + #endif /* OBJECT_H */