diff --git a/doc/html/RM_H5D.html b/doc/html/RM_H5D.html index 1473dc36ec..2e27f94d3d 100644 --- a/doc/html/RM_H5D.html +++ b/doc/html/RM_H5D.html @@ -132,9 +132,9 @@ facilitate moving easily between them.
H5Dcreate(hid_t loc_id,
const char *name,
- hid_ttype_id,
- hid_tspace_id,
- hid_tcreate_plist_id
+ hid_t type_id,
+ hid_t space_id,
+ hid_t create_plist_id
)
H5Dclose(hid_t dataset_id
+ H5Dclose(hid_t dataset_id
)
client_data pointer passed to
H5E_print.
+ The H5E_walk_t prototype is as follows:
+
+ typedef herr_t (*H5E_walk_t)(int n,
+ H5E_error_t *err_desc,
+ void *client_data)
+
+ where the parameters have the following meanings: +
n
+ err_desc
+ hdf5/src/H5Epublic.h.
+ That file also contains the definitive list of major
+ and minor error codes. That information will
+ eventually be presented as an appendix to this
+ Reference Manual.)
+ client_data
+
H5Ewalk can fail if there are problems initializing
the library.
diff --git a/doc/html/RM_H5F.html b/doc/html/RM_H5F.html
index 27843b8517..be8107c5a5 100644
--- a/doc/html/RM_H5F.html
+++ b/doc/html/RM_H5F.html
@@ -429,9 +429,19 @@ facilitate moving easily between them.
H5Fclose 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.
+ + 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. +
+ 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.
file_id
diff --git a/doc/html/RM_H5T.html b/doc/html/RM_H5T.html
index f49c490817..8d42d14caa 100644
--- a/doc/html/RM_H5T.html
+++ b/doc/html/RM_H5T.html
@@ -461,7 +461,7 @@ in the HDF5 User's Guide for further information, including a compl
dst_id
pcdata
-
The parameter pers indicates whether a conversion function
- is HARD or SOFT.
+ is hard (H5T_PERS_HARD)
+ or soft (H5T_PERS_SOFT).
A conversion path can have only one hard function.
- When pers is HARD, func replaces
- any previous hard function.
- If pers is HARD and func
- is the null pointer, then any hard function registered for this
- path is removed.
+ When pers is H5T_PERS_HARD,
+ func replaces any previous hard function.
+ If pers is H5T_PERS_HARD and
+ func is the null pointer, then any hard function
+ registered for this path is removed.
- When pers is SOFT, H5Tregister
+ When pers is H5T_PERS_SOFT,
+ H5Tregister
adds the function to the end of the master soft list and replaces
the soft function in all applicable existing conversion paths.
Soft functions are used when determining which conversion function
@@ -2275,14 +2277,16 @@ zero.
hid_t dst_id,
H5T_cdata_t *cdata,
size_t nelmts,
+ size_t stride,
void *buf,
- void *bkg);
+ void *bkg,
+ hid_t dset_xfer_plist);
pers
- HARD for hard conversion functions;
- SOFT for soft conversion functions.
+ H5T_PERS_HARD for hard conversion functions;
+ H5T_PERS_SOFT for soft conversion functions.
name
src_id
@@ -2682,7 +2686,7 @@ H5T
HDF Help Desk