Last modified: 2016

Name: H5Pset_file_space_page_size

Signature:
herr_t H5Pset_file_space_page_size(hid_t fcpl, hsize_t fsp_size)

Purpose:
Sets the file space page size for a file creation property list.

Description:
H5Pset_file_space_page_size sets the file space page size fsp_size used in paged aggregation and paged buffering.

fsp_size has a minimum size of 512. Setting a value less than 512 will return an error. The library default size for the file space page size when not set is 4096.

The size set via this routine may not be changed for the life of the file.

Parameters:
hid_t fcpl   IN: File creation property list identifier
hsize_t fsp_size   IN: File space page size
Returns:
Returns a non-negative value if successful; otherwise returns a negative value.

Fortran Interface:
None

See Also:
History:
Release     Change
1.10.1 C function introduced with this release.