Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5P_GET_COLL_METADATA_WRITE

Retrieves metadata write mode setting

Procedure:

H5P_GET_COLL_METADATA_WRITE ( fapl_id, is_collective )

Signature:

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.



        

Parameters:
hid_t fapl_idIN: File access propery list identifier
hbool_t *is_collectiveOUT: Boolean value indicating whether metadata writes are collective (1) or independent (0)
Default mode: Independent (0)

Description:

H5P_GET_COLL_METADATA_WRITE retrieves the collective metadata write setting from the file access property into is_collective.

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 22, 2020 | 09:02 AM