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/H5Spkg.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/H5Spkg.h')
-rw-r--r-- | src/H5Spkg.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Spkg.h b/src/H5Spkg.h index 8dc2991..667be62 100644 --- a/src/H5Spkg.h +++ b/src/H5Spkg.h @@ -232,7 +232,8 @@ H5_DLLVAR const H5S_select_class_t H5S_sel_point[1]; /* Extent functions */ H5_DLL herr_t H5S_extent_release(H5S_extent_t *extent); -H5_DLL herr_t H5S_extent_copy(H5S_extent_t *dst, const H5S_extent_t *src); +H5_DLL herr_t H5S_extent_copy(H5S_extent_t *dst, const H5S_extent_t *src, + hbool_t copy_max); /* Operations on selections */ |