aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2016-10-03 16:49:11 -0400
committerJunio C Hamano <gitster@pobox.com>2016-10-10 13:54:02 -0700
commit2564d994c9c91aea58d59565d68d42bbc017f536 (patch)
tree862d782736c08245b5b90f0e25f86a4988f8d92d /Makefile
parent526f108a271b331af9ae92796215e560e5ec4677 (diff)
downloadgit-2564d994c9c91aea58d59565d68d42bbc017f536.tar.gz
git-2564d994c9c91aea58d59565d68d42bbc017f536.tar.xz
tmp-objdir: introduce API for temporary object directories
Once objects are added to the object database by a process, they cannot easily be deleted, as we don't know what other processes may have started referencing them. We have to clean them up with git-gc, which will apply the usual reachability and grace-period checks. This patch provides an alternative: it helps callers create a temporary directory inside the object directory, and a temporary environment which can be passed to sub-programs to ask them to write there (the original object directory remains accessible as an alternate of the temporary one). See tmp-objdir.h for details on the API. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 1aad150b3..4e3becb49 100644
--- a/Makefile
+++ b/Makefile
@@ -831,6 +831,7 @@ LIB_OBJS += submodule-config.o
LIB_OBJS += symlinks.o
LIB_OBJS += tag.o
LIB_OBJS += tempfile.o
+LIB_OBJS += tmp-objdir.o
LIB_OBJS += trace.o
LIB_OBJS += trailer.o
LIB_OBJS += transport.o