summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2013-03-31 10:42:34 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2013-03-31 10:42:34 (GMT)
commit1a367cc384ff1bffc02adf72ae821594396012b6 (patch)
tree54701f63be8fe341b08fb4d954c32ab93ea3c52f
parent1e64926e740af15eb19d686ad48c37e3e745d454 (diff)
downloadhdf5-1a367cc384ff1bffc02adf72ae821594396012b6.zip
hdf5-1a367cc384ff1bffc02adf72ae821594396012b6.tar.gz
hdf5-1a367cc384ff1bffc02adf72ae821594396012b6.tar.bz2
[svn-r23503] Description:
Removed DSetMemXferPropList::setMulti/getMulti from header file (Dana removed them from cpp file. Added note about removing DSetMemXferPropList::setMulti/getMulti in C++ section. Platforms tested: very minor Linux/32 2.6 (jam) SunOS 5.11 (emu)
-rw-r--r--c++/src/H5DxferProp.h6
-rw-r--r--release_docs/RELEASE.txt5
2 files changed, 4 insertions, 7 deletions
diff --git a/c++/src/H5DxferProp.h b/c++/src/H5DxferProp.h
index 66216d8..90fca0a 100644
--- a/c++/src/H5DxferProp.h
+++ b/c++/src/H5DxferProp.h
@@ -66,12 +66,6 @@ class H5_DLLCPP DSetMemXferPropList : public PropList {
void getVlenMemManager( H5MM_allocate_t& alloc, void** alloc_info,
H5MM_free_t& free, void** free_info ) const;
- // Sets the data transfer property list for the multi-file driver.
- void setMulti(const hid_t *memb_dxpl);
-
- // Returns multi-file data transfer property list information.
- void getMulti(hid_t *memb_dxpl);
-
// Sets the size of a contiguous block reserved for small data.
void setSmallDataBlockSize(hsize_t size);
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index b31d696..ea9f7ba 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -183,6 +183,9 @@ Bug Fixes since HDF5-1.8.10
C++ API
------
+ - The C++ wrappers DSetMemXferPropList::setMulti/getMulti are removed because
+ the C functions H5Pset/get_dxpl_multi functions are removed from the library.
+ Fixes HDFFV-8296 by DER. (BMR 2013/03/30)
- An exception thrown by an internal function was not propagating to the
test program during stack unwinding, so it couldn't be caught by the
test and the program terminated "without an active exception." It seemed
@@ -190,7 +193,7 @@ Bug Fixes since HDF5-1.8.10
const char* from a std::string and the resulting string was passed to
the internal function. As a work-around, we added a try/catch around
the the call to the internal function and when the exception is caught there,
- it is re-thrown.
+ it is re-thrown. Fixes HDFFV-8067. (BMR 2013/03/30)
High-Level APIs:
------