Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5P_GET_EDC_CHECK

Determines whether error-detection is enabled for dataset reads

Procedure:

H5P_GET_EDC_CHECK ( plist )

Signature:

H5Z_EDC_t H5Pget_edc_check(hid_t plist)
  

Fortran90 Interface: h5pget_edc_check_f
    
SUBROUTINE h5pget_edc_check_f(prp_id, hdferr) 
  IMPLICIT NONE
  INTEGER(HID_T), INTENT(IN) :: prp_id  ! Dataset transfer property list 
                                        ! identifier 
  INTEGER, INTENT(OUT)       :: flag    ! EDC flag; possible values
                                        !    H5Z_DISABLE_EDC_F 
                                        !    H5Z_ENABLE_EDC_F 
  INTEGER, INTENT(OUT)       :: hdferr  ! Error code
                                        ! 0 on success and -1 on failure
END SUBROUTINE h5pget_edc_check_f
	

Parameters:

hid_t plist     IN: Dataset transfer property list identifier

Description:

H5P_GET_EDC_CHECK queries the dataset transfer property list plist to determine whether error detection is enabled for data read operations.

Returns:

Returns H5Z_ENABLE_EDC or H5Z_DISABLE_EDC if successful; otherwise returns a negative value.

Example:

Coming Soon!

History:
Release    Change
1.6.0Function introduced in this release.

--- Last Modified: August 09, 2019 | 11:53 AM