diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-03-04 15:34:45 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-03-04 15:34:45 -0800 |
commit | 921846fa22adb0abc3fb35e18c6be5feb5091cdd (patch) | |
tree | 4b53b3b120ff88bf1e1e93d7e36902d1aa5d8a8f /git-compat-util.h | |
parent | 85c787f1e9476c3b8cbeeb4656973d0f1efd9881 (diff) | |
parent | bbabaad29823890f328086c6f11b3dddc118adb8 (diff) |
Merge branch 'jk/open-returns-eintr'
Work around platforms whose open() is reported to return EINTR (it
shouldn't, as we do our signals with SA_RESTART).
* jk/open-returns-eintr:
config.mak.uname: enable OPEN_RETURNS_EINTR for macOS Big Sur
Makefile: add OPEN_RETURNS_EINTR knob
Diffstat (limited to 'git-compat-util.h')
-rw-r--r-- | git-compat-util.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/git-compat-util.h b/git-compat-util.h index 838246289c..551cc9f22f 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -788,6 +788,12 @@ int git_vsnprintf(char *str, size_t maxsize, const char *format, va_list ap); #endif +#ifdef OPEN_RETURNS_EINTR +#undef open +#define open git_open_with_retry +int git_open_with_retry(const char *path, int flag, ...); +#endif + #ifdef __GLIBC_PREREQ #if __GLIBC_PREREQ(2, 1) #define HAVE_STRCHRNUL |