Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5P_GET_ALL_COLL_METADATA_OPS

Retrieves metadata read mode setting

Procedure:

H5P_GET_ALL_COLL_METADATA_OPS ( accpl_id, is_collective )

Signature:

herr_t H5Pget_all_coll_metadata_ops(
              hid_t accpl_id,
              hbool_t *is_collective
        )
    

Fortran Interface: h5pget_all_coll_metadata_ops_f
    
Signature:
  SUBROUTINE h5pget_all_coll_metadata_ops_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.


Output:
  is_collective   - Collective access setting.
  hdferr          - Returns 0 if successful and -1 if fails.
        

Parameters:
hid_t accpl_idIN: File, group, dataset, datatype, link, or attribute access property list identifier
hbool_t *is_collectiveOUT: Pointer to a buffer containing the Boolean value indicating whether metadata reads are collective (>0) or independent (0)
Default mode: Independent (0)

Description:

H5P_GET_ALL_COLL_METADATA_OPS retrieves the collective metadata read setting from the access property list accpl_id into is_collective.

See Also:

Returns:

Returns a non-negative value if successful; otherwise returns a negative value.

Example:

Coming Soon!

History:
Release    Change
1.10.0C function and Fortran wrapper introduced with this release.

--- Last Modified: July 21, 2020 | 03:02 PM