summaryrefslogtreecommitdiffstats
path: root/src/H5FD.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-05-13 17:48:07 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-05-13 17:48:07 (GMT)
commit14b00edf0aeb92c493205b41748f50cb89eaa055 (patch)
treeda3ee20963be0d218b9c7a567a1b7ece89bfee2c /src/H5FD.c
parentdbcce6d77f08563a5a20606f7d019bd632f9090e (diff)
downloadhdf5-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.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/H5FD.c b/src/H5FD.c
index b30bdd2..8f33140 100644
--- a/src/H5FD.c
+++ b/src/H5FD.c
@@ -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);