From: Kai Tietz Date: Sun, 11 Jul 2010 20:43:25 +0000 (+0000) Subject: re PR fortran/44698 (I/O: FLUSH does not actually flush the buffer?) X-Git-Tag: releases/gcc-4.6.0~5733 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5bf935c3c802f43abc4774da415099faf600eeb2;p=thirdparty%2Fgcc.git re PR fortran/44698 (I/O: FLUSH does not actually flush the buffer?) 2010-07-11 Kai Tietz PR libfortran/44698 * io/unix.c (flush_buf): Add _commit for WIN32. From-SVN: r162060 --- diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 9a523d5eb82a..943e8e1db516 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,8 @@ +2010-07-11 Kai Tietz + + PR libfortran/44698 + * io/unix.c (flush_buf): Add _commit for WIN32. + 2010-06-28 Tobias Burnus PR fortran/43298 diff --git a/libgfortran/io/unix.c b/libgfortran/io/unix.c index f0cd3b9b16cb..afa5f453bd26 100644 --- a/libgfortran/io/unix.c +++ b/libgfortran/io/unix.c @@ -405,6 +405,10 @@ buf_flush (unix_stream * s) if (s->ndirty != 0) return -1; +#ifdef _WIN32 + _commit (s->fd); +#endif + return 0; }