Merge branch 'jc/fsync-can-fail-with-eintr'

Last minute portability fix.

* jc/fsync-can-fail-with-eintr:
  fsync(): be prepared to see EINTR
This commit is contained in:
Junio C Hamano 2021-06-06 15:39:09 +09:00
Родитель c09b6306c6 cccdfd2243
Коммит 0481af98ba
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -57,8 +57,9 @@ void fprintf_or_die(FILE *f, const char *fmt, ...)
void fsync_or_die(int fd, const char *msg)
{
if (fsync(fd) < 0) {
die_errno("fsync error on '%s'", msg);
while (fsync(fd) < 0) {
if (errno != EINTR)
die_errno("fsync error on '%s'", msg);
}
}