diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-05-13 17:48:07 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-05-13 17:48:07 (GMT) |
commit | 14b00edf0aeb92c493205b41748f50cb89eaa055 (patch) | |
tree | da3ee20963be0d218b9c7a567a1b7ece89bfee2c /src/H5FDstdio.c | |
parent | dbcce6d77f08563a5a20606f7d019bd632f9090e (diff) | |
download | hdf5-14b00edf0aeb92c493205b41748f50cb89eaa055.zip hdf5-14b00edf0aeb92c493205b41748f50cb89eaa055.tar.gz hdf5-14b00edf0aeb92c493205b41748f50cb89eaa055.tar.bz2 |
[svn-r5403] Purpose:
Back out changes.
Description:
Back out changes to VFL 'flush' API function, pending review.
Platforms tested:
IRIX64 6.5 (modi4)
Diffstat (limited to 'src/H5FDstdio.c')
-rw-r--r-- | src/H5FDstdio.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/H5FDstdio.c b/src/H5FDstdio.c index 0599431..4085de7 100644 --- a/src/H5FDstdio.c +++ b/src/H5FDstdio.c @@ -141,7 +141,7 @@ static herr_t H5FD_stdio_read(H5FD_t *lf, H5FD_mem_t type, hid_t fapl_id, haddr_ size_t size, void *buf); static herr_t H5FD_stdio_write(H5FD_t *lf, H5FD_mem_t type, hid_t fapl_id, haddr_t addr, size_t size, const void *buf); -static herr_t H5FD_stdio_flush(H5FD_t *_file, hbool_t closing); +static herr_t H5FD_stdio_flush(H5FD_t *_file); static const H5FD_class_t H5FD_stdio_g = { "stdio", /*name */ @@ -376,7 +376,7 @@ H5FD_stdio_close(H5FD_t *_file) /* Clear the error stack */ H5Eclear(); - if (H5FD_stdio_flush(_file,1)<0) + if (H5FD_stdio_flush(_file)<0) H5Epush_ret(func, H5E_IO, H5E_WRITEERROR, "flush failed", -1); if (fclose(file->fp) < 0) H5Epush_ret(func, H5E_IO, H5E_CLOSEERROR, "fclose failed", -1); @@ -797,7 +797,7 @@ H5FD_stdio_write(H5FD_t *_file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, *------------------------------------------------------------------------- */ static herr_t -H5FD_stdio_flush(H5FD_t *_file, hbool_t closing) +H5FD_stdio_flush(H5FD_t *_file) { H5FD_stdio_t *file = (H5FD_stdio_t*)_file; static const char *func="H5FD_stdio_flush"; /* Function Name for error reporting */ @@ -827,10 +827,8 @@ H5FD_stdio_flush(H5FD_t *_file, hbool_t closing) /* * Flush */ - if(!closing) { - if (fflush(file->fp) < 0) - H5Epush_ret(func, H5E_IO, H5E_WRITEERROR, "fflush failed", -1); - } /* end if */ + if (fflush(file->fp) < 0) + H5Epush_ret(func, H5E_IO, H5E_WRITEERROR, "fflush failed", -1); } /* end if */ else { /* Double-check for problems */ |