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/H5FD.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/H5FD.c')
-rw-r--r-- | src/H5FD.c | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -2487,7 +2487,7 @@ H5FDflush(H5FD_t *file) } /* Do the real work */ - if (H5FD_flush(file, FALSE)<0) { + if (H5FD_flush(file)<0) { HRETURN_ERROR(H5E_VFL, H5E_CANTINIT, FAIL, "file flush request failed"); } @@ -2509,13 +2509,11 @@ H5FDflush(H5FD_t *file) * Wednesday, August 4, 1999 * * Modifications: - * Quincey Koziol, 2002-05-10 - * Added 'closing' parameter * *------------------------------------------------------------------------- */ herr_t -H5FD_flush(H5FD_t *file, hbool_t closing) +H5FD_flush(H5FD_t *file) { FUNC_ENTER(H5FD_flush, FAIL); assert(file && file->cls); @@ -2531,7 +2529,7 @@ H5FD_flush(H5FD_t *file, hbool_t closing) file->accum_dirty=FALSE; } /* end if */ - if (file->cls->flush && (file->cls->flush)(file,closing)<0) + if (file->cls->flush && (file->cls->flush)(file)<0) HRETURN_ERROR(H5E_VFL, H5E_CANTINIT, FAIL, "driver flush request failed"); FUNC_LEAVE(SUCCEED); |