diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2008-08-07 21:49:05 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2008-08-07 21:49:05 (GMT) |
commit | e980307ed9ee9acc414c6166e5f76282fc44bacd (patch) | |
tree | 9c79db2c965b1df62d50bde9f0cad71456b40310 /release_docs | |
parent | a5de140500d6655c80272b82c748a23440539273 (diff) | |
download | hdf5-e980307ed9ee9acc414c6166e5f76282fc44bacd.zip hdf5-e980307ed9ee9acc414c6166e5f76282fc44bacd.tar.gz hdf5-e980307ed9ee9acc414c6166e5f76282fc44bacd.tar.bz2 |
[svn-r15451] Purpose: Fix various problems that were occurring when using mounted files.
Description:
Moved mount table from top file structure to shared file structure. Moved
parent out of mount table and back into top file structure. Mounted files can
now be accessed from any handle of the parent file. Changes to how files are
closed. Stricter cycle checking on mounted files. Removed unused function
H5F_has_mount().
Tested:
committest in 1.8 branch. Committing now due to the urgency of the fix. No
changes here are specific to the trunk, but I will keep an eye on the daily
tests.
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index a68b88b..69c37f3 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -88,6 +88,12 @@ Bug Fixes since HDF5-1.8.0 release Library ------- + - Fixed an issue where mount point traversal would fail when using + multiple handles for the child. (NAF - 2008/08/07) + - Fixed an issue where mount points were inaccessible when using multiple + file handles for the parent. The mount table is now in the shared + file structure (the parent pointer is still in the top structure). + (NAF - 2008/08/07) - when an attribute was opened twice and data was written with one of the handles, the file didn't have the data. It happened because each handle had its own object structure, and the empty one overwrote the data with fill value. This is |