H5P_GET_COLL_METADATA_WRITE
Retrieves metadata write mode setting
H5P_GET_COLL_METADATA_WRITE ( fapl_id, is_collective )
herr_t H5Pget_coll_metadata_write(
hid_t fapl_id,
hbool_t *is_collective
)
Fortran Interface: h5pget_coll_metadata_write_f
Signature:
SUBROUTINE h5pget_coll_metadata_write_f(plist_id, is_collective, hdferr)
INTEGER(HID_T) , INTENT(IN) :: plist_id
LOGICAL, INTENT(OUT) :: is_collective
INTEGER, INTENT(OUT) :: hdferr
Inputs:
plist_id - File access property list identifier.
Outputs:
is_collective - Collective access setting.
hdferr - Returns 0 if successful and -1 if fails.
hid_t fapl_id | IN: File access propery list identifier |
hbool_t *is_collective | OUT: Boolean value indicating whether metadata writes are collective (1 ) or independent (0 ) Default mode: Independent (0 ) |
H5P_GET_COLL_METADATA_WRITE retrieves the collective metadata write setting from the file access property into is_collective
.
Returns a non-negative value if successful; otherwise returns a negative value.
History:
Release | Change |
---|
1.10.0 | C function and Fortran wrapper introduced with this release. |
--- Last Modified: July 22, 2020 | 09:02 AM