1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* ISC license. */ #include <unistd.h> #include <errno.h> #include <skalibs/djbunix.h> int fd_sync (int fd) { int e = errno ; int r ; do r = fsync(fd) ; while (r == -1 && errno == EINTR) ; if (r >= 0) errno = e ; return r ; }