Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5P_SET_VOL

Set the file VOL connector for a file access property list

Procedure:

H5P_SET_VOL ( plist_id, new_vol_id, new_vol_info )

Signature:

herr_t H5Pset_vol ( hid_t plist_id, hid_t new_vol_id, const void *new_vol_info )

  SUBROUTINE h5pset_vol_f(plist_id, new_vol_id, hdferr, new_vol_info)
    IMPLICIT NONE
    INTEGER(HID_T) , INTENT(IN)   :: plist_id
    INTEGER(HID_T) , INTENT(IN)   :: new_vol_id
    INTEGER        , INTENT(OUT)  :: hdferr
    TYPE(C_PTR)    , OPTIONAL     :: new_vol_info
  END SUBROUTINE h5pset_vol_f

Parameters:
hid_t plist_idIN: File access property list
hid_t new_vol_idIN: VOL connector identifier
const void *new_vol_infoIN: Optional VOL information

Description:

H5P_SET_VOL sets the VOL connector new_vol_id for a file access property list plist_id using the (optional) VOL information in new_vol_info.

Returns:

Returns  a non-negative on success and a negative value on failure.

Example:

Include Bitbucket Server for Confluence: An error occured

Connection to Bitbucket Server could not be established. Verify that you have properly configured the Bitbucket Server application link for your Confluence space and that your Bitbucket Server instance is up and running. Error details: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

History:
ReleaseChange
1.12.0Function introduced in this release.

--- Last Modified: March 17, 2020 | 02:48 PM