Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5G_FLUSH

Flushes all buffers associated with a group to disk

Procedure:

H5G_FLUSH(group_id)

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.

HDF5 does not possess full control over buffering. H5G_FLUSH flushes the internal HDF5 buffers and then asks the operating system (the OS) to flush the system buffers for the open files. After that, the OS is responsible for ensuring that the data is actually flushed to disk.

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.0C function introduced with this release.

--- Last Modified: August 14, 2019 | 09:54 AM