H5P_SET_FILE_SPACE_PAGE_SIZE
Sets the file space page size for a file creation property list
Procedure:
H5P_SET_FILE_SPACE_PAGE_SIZE ( fcpl, fsp_size )
Signature:
herr_t H5Pset_file_space_page_size ( hid_t fcpl, hsize_t fsp_size )
Parameters:
hid_t
fcpl | IN: File creation property list identifier |
hsize_t
fsp_size | IN: File space page size |
Description:
H5P_SET_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.
Returns:
Returns a non-negative value if successful; otherwise returns a negative value.
Example:
History:
Release | Change |
---|
1.10.1 | C function introduced with this release. |
--- Last Modified: May 01, 2019 | 03:26 PM