Queries the 1/2 rank of an indexed storage B-tree
Procedure:
H5P_GET_ISTORE_K ( fcpl_id, ik )
Signature:
herr_t H5Pget_istore_k(
hid_t fcpl_id,
unsigned * ik
)
Fortran90 Interface: h5pget_istore_k_f
SUBROUTINE h5pget_istore_k_f(prp_id, ik, hdferr)
IMPLICIT NONE
INTEGER(HID_T), INTENT(IN) :: prp_id ! Property list identifier
INTEGER, INTENT(OUT) :: ik ! 1/2 rank of chunked storage B-tree
INTEGER, INTENT(OUT) :: hdferr ! Error code
! 0 on success and -1 on failure
END SUBROUTINE h5pget_istore_k_f
Parameters:
hid_t fcpl_id | IN: File creation property list identifier |
unsigned * ik | OUT: Pointer to location to return the chunked storage B-tree 1/2 rank (Default value of B-tree 1/2 rank: 32 ) |
Description:
H5P_GET_ISTORE_K queries the 1/2 rank of an indexed storage B-tree.
The argument ik
may be the null pointer (NULL).
This function is valid only for file creation property lists.
See H5P_SET_ISTORE_K for details.
Returns:
Returns a non-negative value if successful; otherwise returns a negative value.
Example:
History:
Release | Change |
---|
1.6.4 | ik parameter type changed to unsigned. |
--- Last Modified: May 01, 2019 | 03:24 PM