aboutsummaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-08-23 14:33:52 -0700
committerJunio C Hamano <gitster@pobox.com>2017-08-23 14:33:52 -0700
commitdf2dd283164b7f1776b04dfbea9302a0bd1c170c (patch)
tree100a0df7424dcecce81e71f921ecbaad57eff53e /cache.h
parentde55703672ea47893702c0bfaffb4788d2eb3818 (diff)
parentfa64a2fdbeedd98c5f24d1662bcc470a8449abcf (diff)
downloadgit-df2dd283164b7f1776b04dfbea9302a0bd1c170c.tar.gz
git-df2dd283164b7f1776b04dfbea9302a0bd1c170c.tar.xz
Merge branch 'jt/subprocess-handshake' into maint
Code cleanup. * jt/subprocess-handshake: sub-process: refactor handshake to common function Documentation: migrate sub-process docs to header convert: add "status=delayed" to filter process protocol convert: refactor capabilities negotiation convert: move multiple file filter error handling to separate function convert: put the flags field before the flag itself for consistent style t0021: write "OUT <size>" only on success t0021: make debug log file name configurable t0021: keep filter log files on comparison
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/cache.h b/cache.h
index a09a5017f..25c98b680 100644
--- a/cache.h
+++ b/cache.h
@@ -1500,6 +1500,7 @@ struct checkout {
struct index_state *istate;
const char *base_dir;
int base_dir_len;
+ struct delayed_checkout *delayed_checkout;
unsigned force:1,
quiet:1,
not_new:1,
@@ -1509,6 +1510,8 @@ struct checkout {
#define TEMPORARY_FILENAME_LENGTH 25
extern int checkout_entry(struct cache_entry *ce, const struct checkout *state, char *topath);
+extern void enable_delayed_checkout(struct checkout *state);
+extern int finish_delayed_checkout(struct checkout *state);
struct cache_def {
struct strbuf path;