diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2010-10-15 19:16:41 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2010-10-15 19:16:41 (GMT) |
commit | c002883bcc008a4274433ed8e8275669c09dcfe6 (patch) | |
tree | c2290aca7bed508bd952eb29ef04fb0adc9642f2 /src/H5Fpkg.h | |
parent | 9f6fb53aa6941dbc67e40f47c8e27a12255cd123 (diff) | |
download | hdf5-c002883bcc008a4274433ed8e8275669c09dcfe6.zip hdf5-c002883bcc008a4274433ed8e8275669c09dcfe6.tar.gz hdf5-c002883bcc008a4274433ed8e8275669c09dcfe6.tar.bz2 |
[svn-r19617] Purpose:
Merge accum_tests branch back to the trunk.
Description:
Changes consist of addition of tests for H5Faccum.c source code,
as well as some fixes that address some discovered bugs in the
metadata accumulator on several corner cases.
Tested:
h5committested
Diffstat (limited to 'src/H5Fpkg.h')
-rw-r--r-- | src/H5Fpkg.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Fpkg.h b/src/H5Fpkg.h index 4a4d49c..c98bda4 100644 --- a/src/H5Fpkg.h +++ b/src/H5Fpkg.h @@ -314,14 +314,14 @@ H5_DLL herr_t H5F_super_ext_close(H5F_t *f, H5O_loc_t *ext_ptr, hid_t dxpl_id, hbool_t was_created); /* Metadata accumulator routines */ -H5_DLL htri_t H5F_accum_read(const H5F_t *f, hid_t dxpl_id, H5FD_mem_t type, +H5_DLL herr_t H5F_accum_read(const H5F_t *f, hid_t dxpl_id, H5FD_mem_t type, haddr_t addr, size_t size, void *buf); -H5_DLL htri_t H5F_accum_write(const H5F_t *f, hid_t dxpl_id, H5FD_mem_t type, +H5_DLL herr_t H5F_accum_write(const H5F_t *f, hid_t dxpl_id, H5FD_mem_t type, haddr_t addr, size_t size, const void *buf); H5_DLL herr_t H5F_accum_free(H5F_t *f, hid_t dxpl_id, H5FD_mem_t type, haddr_t addr, hsize_t size); -H5_DLL herr_t H5F_accum_flush(H5F_t *f, hid_t dxpl_id); -H5_DLL herr_t H5F_accum_reset(H5F_t *f, hid_t dxpl_id); +H5_DLL herr_t H5F_accum_flush(const H5F_t *f, hid_t dxpl_id); +H5_DLL herr_t H5F_accum_reset(const H5F_t *f, hid_t dxpl_id, hbool_t flush); /* Shared file list related routines */ H5_DLL herr_t H5F_sfile_add(H5F_file_t *shared); |