Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5P_GET_VIRTUAL_PRINTF_GAP

Returns the maximum number of missing source files and/or datasets with the printf-style names when getting the extent for an unlimited virtual dataset

Procedure:

H5P_GET_VIRTUAL_PRINTF_GAP ( dapl_id, gap_size )

Signature:

herr_t H5Pget_virtual_printf_gap(
        hid_t dapl_id,
        hsize_t *gap_size
        )
    

Fortran Interface: h5pget_virtual_printf_gap_f

Signature:
  SUBROUTINE h5pget_virtual_printf_gap_f(dapl_id, gap_size, hdferr)
    INTEGER(HID_T)  , INTENT(IN)  :: dapl_id
    INTEGER(HSIZE_T), INTENT(OUT) :: gap_size
    INTEGER         , INTENT(OUT) :: hdferr

Inputs:
  dapl_id    - Dataset access property list identifier for the virtual dataset

Outputs:
  gap_size - Maximum number of the files and/or datasets allowed to 
             be missing for determining the extent of an unlimited virtual 
             dataset with printf-style mappings. 
  hdferr   - Returns 0 if successful and -1 if fails
        

Parameters:
hid_t dapl_idIN: Dataset access property list identifier for the virtual dataset
hsize_t *gap_sizeOUT: Maximum number of the files and/or datasets allowed to be missing for determining the extent of an unlimited virtual dataset with printf-style mappings.
(Default: 0)

Description:

H5P_GET_VIRTUAL_PRINTF_GAP returns the maximum number of missing printf-style files and/or datasets for determining the extent of an unlimited virtual dataaset, gap_size, using the access property list for the virtual dataset, dapl_id.

The default library value for gap_size is 0 (zero).

See Also:

 

Returns:

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

Example:

Coming Soon!

History:
Release    Change
1.10.0C function introduced with this release.

--- Last Modified: August 08, 2019 | 02:49 PM