summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2019-04-25 07:41:10 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-04-25 07:41:11 (GMT)
commit5795a75f9bd7a7f008b213c2f099e8c6b0468512 (patch)
treeed5f85921947bfcdd9dd7a8003c9760e5c0cc0c7 /cache.h
parent14c0f8d3ab6c36672189cd2dd217f4617d12ccba (diff)
parent1956ecd0ab26dea9c3ed6b9afe334101d9d12f60 (diff)
downloadgit-5795a75f9bd7a7f008b213c2f099e8c6b0468512.zip
git-5795a75f9bd7a7f008b213c2f099e8c6b0468512.tar.gz
git-5795a75f9bd7a7f008b213c2f099e8c6b0468512.tar.bz2
Merge branch 'bp/post-index-change-hook'
A new hook "post-index-change" is called when the on-disk index file changes, which can help e.g. a virtualized working tree implementation. * bp/post-index-change-hook: read-cache: add post-index-change hook
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/cache.h b/cache.h
index e3c2ab9..e928fe9 100644
--- a/cache.h
+++ b/cache.h
@@ -339,7 +339,9 @@ struct index_state {
struct cache_time timestamp;
unsigned name_hash_initialized : 1,
initialized : 1,
- drop_cache_tree : 1;
+ drop_cache_tree : 1,
+ updated_workdir : 1,
+ updated_skipworktree : 1;
struct hashmap name_hash;
struct hashmap dir_hash;
struct object_id oid;