diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2005-11-18 16:01:53 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2005-11-18 16:01:53 (GMT) |
commit | c7e562c75524af02b080984e46994ed350b8164d (patch) | |
tree | fac18e6bca7624736c60f091924c8ecf0faba4e9 /src/H5Dpkg.h | |
parent | 4f8ca8e026fbff3eafaf514bb0be8a4126593268 (diff) | |
download | hdf5-c7e562c75524af02b080984e46994ed350b8164d.zip hdf5-c7e562c75524af02b080984e46994ed350b8164d.tar.gz hdf5-c7e562c75524af02b080984e46994ed350b8164d.tar.bz2 |
[svn-r11739] Purpose:
slight code change for efficiency of iteration of chunk address
Description:
Quincey picked this up because of my inexperience of C. A pair of redundant malloc and free calls will be removed.
Solution:
Platforms tested:
heping(Linux 2.4)
too little to be tested.
Misc. update:
Diffstat (limited to 'src/H5Dpkg.h')
-rw-r--r-- | src/H5Dpkg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dpkg.h b/src/H5Dpkg.h index 7467e93..5ce0bbd 100644 --- a/src/H5Dpkg.h +++ b/src/H5Dpkg.h @@ -259,7 +259,7 @@ H5_DLL herr_t H5D_istore_initialize_by_extent(H5D_io_info_t *io_info); H5_DLL herr_t H5D_istore_update_cache(H5D_t *dset, hid_t dxpl_id); H5_DLL herr_t H5D_istore_dump_btree(H5F_t *f, hid_t dxpl_id, FILE *stream, unsigned ndims, haddr_t addr); -H5_DLL herr_t H5D_istore_chunkmap(const H5D_io_info_t *io_info, hsize_t total_chunk, haddr_t chunk_addr[] ); +H5_DLL herr_t H5D_istore_chunkmap(const H5D_io_info_t *io_info, hsize_t total_chunk, haddr_t chunk_addr[],hsize_t down_chunks[] ); #ifdef H5D_ISTORE_DEBUG H5_DLL herr_t H5D_istore_stats (H5D_t *dset, hbool_t headers); #endif /* H5D_ISTORE_DEBUG */ |