diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-11-20 10:50:18 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-11-20 10:50:18 (GMT) |
commit | 6a5559be99224fd6693f0b11fe31ad61e211f6cb (patch) | |
tree | c6694dca77b05351824312d5fbd3ddf9d37520dd /src/H5Sprivate.h | |
parent | b4f4670c811cae49e08f1799b6ea69a8bb1345f3 (diff) | |
download | hdf5-6a5559be99224fd6693f0b11fe31ad61e211f6cb.zip hdf5-6a5559be99224fd6693f0b11fe31ad61e211f6cb.tar.gz hdf5-6a5559be99224fd6693f0b11fe31ad61e211f6cb.tar.bz2 |
[svn-r14271] Description:
Avoid copying maximum dimensions for temporary dataspaces used for
describing chunks during raw data I/O.
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Diffstat (limited to 'src/H5Sprivate.h')
-rw-r--r-- | src/H5Sprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Sprivate.h b/src/H5Sprivate.h index c6f2ce5..49b1df8 100644 --- a/src/H5Sprivate.h +++ b/src/H5Sprivate.h @@ -191,7 +191,7 @@ typedef struct H5S_iostats_t { /* Operations on dataspaces */ -H5_DLL H5S_t *H5S_copy(const H5S_t *src, hbool_t share_selection); +H5_DLL H5S_t *H5S_copy(const H5S_t *src, hbool_t share_selection, hbool_t copy_max); H5_DLL herr_t H5S_close(H5S_t *ds); #ifdef H5S_DEBUG H5_DLL H5S_iostats_t *H5S_find(const H5S_t *mem_space, const H5S_t *file_space); |