Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5P_GET_FAPL_FAMILY

Returns file access property list information

Procedure:

H5P_GET_FAPL_FAMILY ( fapl_id, memb_size, memb_fapl_id )

Signature:

herr_t H5Pget_fapl_family (
                        hid_t fapl_id,
                        hsize_t *memb_size,
                        hid_t *memb_fapl_id
    )
  

Fortran90 Interface: h5pget_fapl_family_f
    
SUBROUTINE h5pget_fapl_family_f(prp_id, imemb_size, memb_plist, hdferr) 
  IMPLICIT NONE
  INTEGER(HID_T), INTENT(IN)    :: prp_id    ! Property list identifier
  INTEGER(HSIZE_T), INTENT(OUT) :: memb_size ! Logical size, in bytes,
                                             ! of each family member
  INTEGER(HID_T), INTENT(OUT) :: memb_plist  ! Identifier of the file 
                                             ! access property list to be
                                             ! used for each family member
  INTEGER, INTENT(OUT) :: hdferr             ! Error code
                                             ! 0 on success and -1 on failure
END SUBROUTINE h5pget_fapl_family_f
	

Parameters:
hid_t fapl_idIN: File access property list identifier
hsize_t *memb_sizeOUT: Size in bytes of each file member
hid_t *memb_fapl_id    OUT: Identifier of file access property list for each family member

Description:

H5P_GET_FAPL_FAMILY returns file access property list for use with the family driver. This information is returned through the output parameters.

Returns:

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

Example:

Coming Soon!

History:
Release    Change
1.4.0Function introduced in this release.

--- Last Modified: July 15, 2019 | 03:26 PM