From: Johannes Schindelin <johannes.schindelin@xxxxxx> For some reason, t/t5552-skipping-fetch-negotiator.sh fails particularly often on Windows due to racy tracing where the `git upload-pack` and the `git fetch` processes compete for the same file. We just introduced a remedy that uses fcntl(), but Windows does not have fcntl(). So let's implement an alternative. Signed-off-by: Johannes Schindelin <johannes.schindelin@xxxxxx> --- compat/mingw.c | 19 +++++++++++++++++++ compat/mingw.h | 3 +++ config.mak.uname | 3 +++ 3 files changed, 25 insertions(+) diff --git a/compat/mingw.c b/compat/mingw.c index 6ded1c859..6da9ce861 100644 --- a/compat/mingw.c +++ b/compat/mingw.c @@ -514,6 +514,25 @@ int mingw_chmod(const char *filename, int mode) return _wchmod(wfilename, mode); } +int mingw_lock_or_unlock_fd_for_appending(int fd, int lock_it) +{ + HANDLE handle = (HANDLE)_get_osfhandle(fd); + OVERLAPPED overlapped = { 0 }; + DWORD err; + + if (!lock_it && UnlockFileEx(handle, 0, -1, 0, &overlapped)) + return 0; + if (lock_it && + LockFileEx(handle, LOCKFILE_EXCLUSIVE_LOCK, 0, -1, 0, &overlapped)) + return 0; + + err = GetLastError(); + /* LockFileEx() cannot lock pipes */ + errno = err == ERROR_INVALID_FUNCTION ? + EBADF : err_win_to_posix(GetLastError()); + return -1; +} + /* * The unit of FILETIME is 100-nanoseconds since January 1, 1601, UTC. * Returns the 100-nanoseconds ("hekto nanoseconds") since the epoch. diff --git a/compat/mingw.h b/compat/mingw.h index 571019d0b..0f76d89a9 100644 --- a/compat/mingw.h +++ b/compat/mingw.h @@ -397,6 +397,9 @@ HANDLE winansi_get_osfhandle(int fd); * git specific compatibility */ +int mingw_lock_or_unlock_fd_for_appending(int fd, int lock_it); +#define lock_or_unlock_fd_for_appending mingw_lock_or_unlock_fd_for_appending + #define has_dos_drive_prefix(path) \ (isalpha(*(path)) && (path)[1] == ':' ? 2 : 0) int mingw_skip_dos_drive_prefix(char **path); diff --git a/config.mak.uname b/config.mak.uname index 684fc5bf0..159b7da81 100644 --- a/config.mak.uname +++ b/config.mak.uname @@ -376,6 +376,7 @@ ifeq ($(uname_S),Windows) NO_POSIX_GOODIES = UnfortunatelyYes NATIVE_CRLF = YesPlease DEFAULT_HELP_FORMAT = html + HAVE_FLOCK = YesWeEmulate CC = compat/vcbuild/scripts/clink.pl AR = compat/vcbuild/scripts/lib.pl @@ -523,6 +524,8 @@ ifneq (,$(findstring MINGW,$(uname_S))) NO_INET_NTOP = YesPlease NO_POSIX_GOODIES = UnfortunatelyYes DEFAULT_HELP_FORMAT = html + HAVE_FLOCK = YesWeEmulate + COMPAT_CFLAGS += -DNOGDI -Icompat -Icompat/win32 COMPAT_CFLAGS += -DSTRIP_EXTENSION=\".exe\" COMPAT_OBJS += compat/mingw.o compat/winansi.o \ -- gitgitgadget