diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2016-03-06 13:39:21 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2016-03-06 13:39:21 (GMT) |
commit | f037387935769c8113d1b6494bf2b8af08dbece9 (patch) | |
tree | 75b6111027171f0b62b2dc438b6c16a93264ed24 /release_docs | |
parent | ec908e7ab6356dd8edbe80e45d75e2c4c96f3a5e (diff) | |
download | hdf5-f037387935769c8113d1b6494bf2b8af08dbece9.zip hdf5-f037387935769c8113d1b6494bf2b8af08dbece9.tar.gz hdf5-f037387935769c8113d1b6494bf2b8af08dbece9.tar.bz2 |
[svn-r29287] Merge of r29269, 29270, 29272 from trunk.
packet table improvements
Tested on: 64-bit Ubuntu 15.10 w/ gcc 5.2.1
autotools serial w/ Fortran and C++
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 24c83e9..f2d32c6 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -60,6 +60,17 @@ New Features High-Level APIs: ------ + - New public functions in Packet Table API + + Two accessor functions were added per HDFFV-8623/patch 003. + /* Returns the ID of the dataset associated with the packet table */ + hid_t H5PTget_dataset(hid_t table_id); + + /* Returns the ID of the datatype the packet table uses */ + hid_t H5PTget_type(hid_t table_id); + + (BMR, 2016/03/04, HDFFV-8623) + Documentation ------------- @@ -87,6 +98,19 @@ Bug Fixes since HDF5-1.8.0 release High-Level APIs: ------ + - Packet Table is updated. + + In the Packet Table C API, there are changes with the following functions, + which had been ifdef'ed out with VLPT_REMOVED since 2006 + * H5PTcreate_vl, is removed from this release + * H5PTfree_vlen_readbuff, is renamed to H5PTfree_vlen_buff + * H5PTis_varlen, is made available again + + Various cleanup: replacing 0/-1 with SUCCEED/FAIL and H5I_BADID with + H5I_INVALID_HID. + + (BMR, 2016/03/04, HDFFV-442) + Fortran High-Level APIs: ------ |