summaryrefslogtreecommitdiff
path: root/git-compat-util.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-08-25 20:55:07 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-08-25 20:55:07 (GMT)
commit3dc01702dfbdbfc7116a21c4a5b32f088029bacf (patch)
tree1632731cd6f30e9a86dda0de15253f399d3e0f11 /git-compat-util.h
parenta8998453bebd7a4d620c78773917f1189ff4e672 (diff)
parent05d1ed6148305d299693000856e4971e9f642662 (diff)
downloadgit-3dc01702dfbdbfc7116a21c4a5b32f088029bacf.zip
git-3dc01702dfbdbfc7116a21c4a5b32f088029bacf.tar.gz
git-3dc01702dfbdbfc7116a21c4a5b32f088029bacf.tar.bz2
Merge branch 'bw/mingw-avoid-inheriting-fd-to-lockfile'
The tempfile (hence its user lockfile) API lets the caller to open a file descriptor to a temporary file, write into it and then finalize it by first closing the filehandle and then either removing or renaming the temporary file. When the process spawns a subprocess after obtaining the file descriptor, and if the subprocess has not exited when the attempt to remove or rename is made, the last step fails on Windows, because the subprocess has the file descriptor still open. Open tempfile with O_CLOEXEC flag to avoid this (on Windows, this is mapped to O_NOINHERIT). * bw/mingw-avoid-inheriting-fd-to-lockfile: mingw: ensure temporary file handles are not inherited by child processes t6026-merge-attr: child processes must not inherit index.lock handles
Diffstat (limited to 'git-compat-util.h')
-rw-r--r--git-compat-util.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/git-compat-util.h b/git-compat-util.h
index f52e00b..db89ba7 100644
--- a/git-compat-util.h
+++ b/git-compat-util.h
@@ -667,6 +667,10 @@ void *gitmemmem(const void *haystack, size_t haystacklen,
#define getpagesize() sysconf(_SC_PAGESIZE)
#endif
+#ifndef O_CLOEXEC
+#define O_CLOEXEC 0
+#endif
+
#ifdef FREAD_READS_DIRECTORIES
#ifdef fopen
#undef fopen