H5Gclose
(hid_t group_id
)
H5Gclose
releases resources used by a group which was
opened by H5Gcreate*
or H5Gopen*
.
After closing a group, the group_id
cannot be used again.
Failure to release a group with this call will result in resource leaks.
hid_t group_id |
IN: Group identifier to release. |
SUBROUTINE h5gclose_f( gr_id, hdferr) IMPLICIT NONE INTEGER(HID_T), INTENT(IN) :: gr_id ! Group identifier INTEGER, INTENT(OUT) :: hdferr ! Error code ! 0 on success and -1 on failure END SUBROUTINE h5gclose_f