herr_t H5Pget_file_space_strategy(
hid_t fcpl,
H5F_fspace_strategy_t *strategy,
hbool_t *persist,
hsize_t *threshold);
H5Pget_file_space_strategy
retrieves the file space handling strategy,
the persisting free-space condition and the threshold value in the parameters strategy
,
persist
and threshold
respectively.
The library default values returned when H5Pset_file_space_strategy
has not been called are:
strategy
‐ H5F_FSPACE_STRATEGY_FSM_AGGR
persist
‐ FALSE (0
)threshold
‐ 1 hid_t
fcpl |
|
IN: The file creation property list identifier |
H5F_fspace_strategy_t *strategy |
|
OUT: The file space handling strategy. |
hbool_t
*persist |
|
OUT: The boolean value indicating whether free space is persistent or not. |
hsize_t
*threshold |
|
OUT: The free-space section size threshold value. |
Release | Change |
1.10.1 | C function introduced with this release. |