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/H5FDprivate.h | |
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/H5FDprivate.h')
-rw-r--r-- | src/H5FDprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDprivate.h b/src/H5FDprivate.h index 6e0c919..19dd6b1 100644 --- a/src/H5FDprivate.h +++ b/src/H5FDprivate.h @@ -38,7 +38,7 @@ __DLL__ herr_t H5FD_read(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id, haddr_t a void *buf/*out*/); __DLL__ herr_t H5FD_write(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, size_t size, const void *buf); -__DLL__ herr_t H5FD_flush(H5FD_t *file); +__DLL__ herr_t H5FD_flush(H5FD_t *file, unsigned closing); __DLL__ herr_t H5FD_get_fileno(const H5FD_t *file, unsigned long *filenum); #endif /* !_H5FDprivate_H */ |