Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5T_FLUSH

Flushes all buffers associated with a committed datatype to disk

Procedure:

H5T_FLUSH(dtype_id)

Signature:

herr_t H5Tflush(hid_t dtype_id)

Parameters:
hid_t dtype_id   IN: Identifier of the committed datatype to be flushed

Description:

 H5T_FLUSH causes all buffers associated with a committed datatype to be immediately flushed to disk without removing the data from the cache.


HDF5 does not possess full control over buffering.  H5T_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:

Coming Soon!

History:
Release    Change
1.10.0C function introduced with this release.

--- Last Modified: August 13, 2019 | 02:58 PM