[svn-r2090] RM_H5D.html

H5Dclose:  Corrected return type to herr_t (was hid_t).
        H5Dcreate: Inserted missing spaces in function syntax statement.
RM_H5E.html
	H5Ewalk: Added H5E_walk_t prototype and prototype parameter
	    descriptions.
RM_H5F.html
	H5Fclose: Corrected behavior description, eliminating
	    comment that function fials if other access identifiers
	    are still open and describing actual behavior.
RM_H5T.html
        H5Tregister:  Corrected possible 'pers' values to H5T_PERS_HARD
            (was HARD) and H5T_PERS_SOFT (was SOFT).
	H5Tfind: Corrected 'pcdata' parameter IN/OUT designation.
This commit is contained in:
Frank Baker
2000-04-07 14:38:42 -05:00
parent d9b36b8a7f
commit 5228ba6c71
4 changed files with 57 additions and 19 deletions

View File

@@ -429,9 +429,19 @@ facilitate moving easily between them.</i>
<dd>Terminates access to an HDF5 file.
<dt><strong>Description:</strong>
<dd><code>H5Fclose</code> terminates access to an HDF5 file.
If this is the last file identifier open for a file
and if access identifiers are still in use,
this function will fail.
<p>
If this is the last file identifier open for the file
and no other access identifier is open (e.g., a dataset
identifier, group identifier, or shared datatype identifier),
the file will be fully closed and access will end.
<p>
If this is the last file identifier open for the file
and other access identifiers are still in use,
those access identifiers remain valid until separately
closed and can still be used.
(But the file identifier is no longer valid and cannot be used.)
Once all of the remaining access identifiers are closed,
the file will be fully closed and access will end.
<dt><strong>Parameters:</strong>
<dl>
<dt><em>hid_t</em> <code>file_id</code>