Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5P_GET_SIEVE_BUF_SIZE

Returns maximum data sieve buffer size

Procedure:

H5P_GET_SIEVE_BUF_SIZE ( fapl_id, size )

Signature:

herr_t H5Pget_sieve_buf_size(
                     hid_t fapl_id,
                     size_t *size
    )

  

Fortran90 Interface: h5pget_sieve_buf_size_f

SUBROUTINE h5pget_sieve_buf_size_f(plist_id, size, hdferr) 
  IMPLICIT NONE
  INTEGER(HID_T), INTENT(IN) :: plist_id ! File access property list 
                                         ! identifier
  INTEGER(SIZE_T), INTENT(OUT) :: size   ! Sieve buffer size 
  INTEGER, INTENT(OUT)       :: hdferr   ! Error code
                                         ! 0 on success and -1 on failure
END SUBROUTINE h5pget_sieve_buf_size_f 

Parameters:
hid_t fapl_id    IN: File access property list identifier
size_t *sizeIN: Maximum size, in bytes, of data sieve buffer

Description:

H5P_GET_SIEVE_BUF_SIZE retrieves, size, the current maximum size of the data sieve buffer.

This value is set by H5P_SET_SIEVE_BUF_SIZE and is retrieved from the file access property list fapl_id.

Returns:

Returns a non-negative value if successful. Otherwise returns a negative value.

Example:

Coming Soon!

History:
Release    Change
1.6.0The size parameter has changed from type hsize_t to size_t
1.4.0Function introduced in this release

--- Last Modified: June 10, 2019 | 01:56 PM