Resets the extent of a dataspace back to "none"
Procedure:
H5S_SET_EXTENT_NONE ( space_id )
Signature:
herr_t H5Sset_extent_none(
hid_t space_id
)
Fortran90 Interface: h5sset_extent_none_f
SUBROUTINE h5sset_extent_none_f(space_id, hdferr)
IMPLICIT NONE
INTEGER(HID_T), INTENT(IN) :: space_id ! Dataspace identifier
INTEGER, INTENT(OUT) :: hdferr ! Error code
! 0 on success and -1 on failure
END SUBROUTINE h5sset_extent_none_f
Parameters:
hid_t space_id
IN: The identifier for the dataspace from which the extent is to be removed
Description:
H5S_SET_EXTENT_NONE resets the type of a dataspace to H5S_NULL with no extent information stored for the dataspace.
Returns:
Returns a non-negative value if successful; otherwise returns a negative value.
Example:
Release | Change |
---|
1.10.7,1.12.1 | The function behavior was changed. The previous behavior was to set the class to H5S_NO_CLASS (which caused an internal 'error' value). |
1.4.0 | Fortran subroutine was introduced in this release. |
1.0.0 | C function was introduced in this release. |
--- Last Modified: August 06, 2020 | 01:20 PM