Flushes all buffers associated with a group to disk
Procedure:
Signature:
herr_t H5Gflush(hid_t group_id)
Parameters:
hid_t group_id | IN: Identifier of the group to be flushed |
Description:
H5G_FLUSH causes all buffers associated with a group to be immediately flushed to disk without removing the data from the cache.
See Also:
Returns:
Returns a non-negative value if successful; otherwise returns a negative value.
Example:
See the <HDF5 Source>/test/swmr.c
test for example code:
/* Flush the group */
if(H5Gflush(gid) < 0)
History:
Release | Change |
---|
1.10.0 | C function introduced with this release. |
--- Last Modified: August 14, 2019 | 09:54 AM