diff --git a/doc/html/RM_H5G.html b/doc/html/RM_H5G.html index 818cef8448..fb47ab3687 100644 --- a/doc/html/RM_H5G.html +++ b/doc/html/RM_H5G.html @@ -387,7 +387,7 @@ create or access function.
H5Giterate(hid_t loc_id,
const char *name,
int *idx,
- H5G_operator_t operator,
+ H5G_iterate_t operator,
void *operator_data
)
- The prototype for H5G_operator_t is:
+ The prototype for H5G_iterate_t is:
typedef herr_t *(H5G_operator_t)(hid_t group_id,
- const char *member_name, void *operator_data/*in,out*/);
+ typedef herr_t (*H5G_iterate_t)(hid_t group_id,
+ const char *member_name,
+ void *operator_data);
group_id, the name of the current
@@ -429,6 +430,11 @@ create or access function.
indicating failure. The iterator can be restarted at the next
group member.
+
+ H5Giterate assumes that the membership of the group
+ identified by name remains unchanged through the
+ iteration. If the membership changes during the iteration,
+ the function's behavior is undefined.
loc_id