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_id | IN: File access property list |
hid_t new_vol_id | IN: VOL connector identifier |
const void *new_vol_info | IN: 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: File content cannot be shown
Unauthenticated access to this resource is not allowed. Please login to Confluence first.
History:
Release | Change |
---|
1.12.0 | Function introduced in this release. |
--- Last Modified: March 17, 2020 | 02:48 PM