diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-06-01 21:20:10 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-06-01 21:20:10 (GMT) |
commit | 45bbf45250734eda45794d5fc5bcfde4454d734b (patch) | |
tree | 9925e40d4ccb5bfdc9904e29f9bb1297bf1330ea /release_docs/RELEASE.txt | |
parent | 3f84e6478518a288a3a22d4385b114527a2d5b6e (diff) | |
download | hdf5-45bbf45250734eda45794d5fc5bcfde4454d734b.zip hdf5-45bbf45250734eda45794d5fc5bcfde4454d734b.tar.gz hdf5-45bbf45250734eda45794d5fc5bcfde4454d734b.tar.bz2 |
[svn-r10837] Purpose:
Bug fix/new feature
Description:
Setting "SEMI" or "STRONG" file close degrees causes problems when multiple
file IDs exist for the same file on disk.
Solution:
Make the "SEMI" and "STRONG" settings only apply to the file ID that is
being closed.
Also, add an "H5F_OBJ_LOCAL" flag for the H5Fget_obj_count() &
H5Fget_obj_ids() calls, so that applications can query about objects opened
with a particular file ID instead of all the objects opened in the file on
disk.
Platforms tested:
FreeBSD 4.11 (sleipnir)
h5committest
Diffstat (limited to 'release_docs/RELEASE.txt')
-rw-r--r-- | release_docs/RELEASE.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index aae113a..43a9b72 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -90,6 +90,10 @@ New Features Library: -------- + - Added H5F_OBJ_LOCAL flag to H5Fget_obj_count() & H5Fget_obj_ids(), to + allow querying for objects in file that were opened with a particular + file ID, instead of all objects opened in file with any file ID. + QAK - 2005/06/01 - Added H5T_CSET_UTF8 character set to mark datatypes that use the UTF-8 Unicode character encoding. Added tests to ensure that library handles UTF-8 object names, attributes, etc. -JL 2005/05/13 @@ -286,6 +290,9 @@ Bug Fixes since HDF5-1.6.0 release Library ------- + - "SEMI" and "STRONG" file close degree settings now apply only to the + particular file ID being closed, instead of operating on all open + file IDs for a given file. QAK - 2005/06/01 - For family driver, the library didn't save member size in file. When file is reopened, the size of 1st member file determine the member size. Now member size is saved in file and is used to |