diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-05-20 16:01:57 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-05-20 16:01:57 (GMT) |
commit | 86170c3d00011e9e323a2b5fcaa4fbfc318c7c9c (patch) | |
tree | 7e5a72d6fe88ff305cdd08eb801687d3ad991785 /src/H5FDsrb.c | |
parent | c581a0723521cd20d62f16af39457106735a8629 (diff) | |
download | hdf5-86170c3d00011e9e323a2b5fcaa4fbfc318c7c9c.zip hdf5-86170c3d00011e9e323a2b5fcaa4fbfc318c7c9c.tar.gz hdf5-86170c3d00011e9e323a2b5fcaa4fbfc318c7c9c.tar.bz2 |
[svn-r5440] Purpose:
New feature
Description:
Add 'closing' parameter to H5FDflush and VFL "flush" functions, per
http://hdf.ncsa.uiuc.edu/RFC/VFLFlush/VFLFlush.html
Platforms tested:
IRIX64 6.5 (modi4)
Diffstat (limited to 'src/H5FDsrb.c')
-rw-r--r-- | src/H5FDsrb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FDsrb.c b/src/H5FDsrb.c index db8de8d..314bed8 100644 --- a/src/H5FDsrb.c +++ b/src/H5FDsrb.c @@ -89,7 +89,7 @@ static herr_t H5FD_srb_read(H5FD_t *_file, H5FD_mem_t type, hid_t fapl_id, hadd size_t size, void *buf); static herr_t H5FD_srb_write(H5FD_t *_file, H5FD_mem_t type, hid_t fapl_id, haddr_t addr, size_t size, const void *buf); -static herr_t H5FD_srb_flush(H5FD_t *_file); +static herr_t H5FD_srb_flush(H5FD_t *_file, unsigned closing); /* The description of a file belonging to this driver. */ typedef struct H5FD_srb_t { @@ -661,7 +661,7 @@ H5FD_srb_write(H5FD_t *_file, H5FD_mem_t UNUSED type, hid_t UNUSED dxpl_id, hadd *------------------------------------------------------------------------- */ static herr_t -H5FD_srb_flush(H5FD_t *_file) +H5FD_srb_flush(H5FD_t *_file, unsigned UNUSED closing) { H5FD_srb_t *file = (H5FD_srb_t*)_file; |