herr_t H5Fstart_mdc_logging(
hid_t file_id
)
Due to the complexity of the cache, a trace/logging feature has been created that can be used by HDF5 developers for debugging and performance analysis. The functions that control this functionality will normally be of use to a very limited number of developers outside of The HDF Group. The functions have been documented to help users create logs that can be sent with bug reports.
Control of the log functionality is straightforward. Logging is
enabled via the H5Pset_mdc_log_options()
function,
which will modify the file access property list used to open or create
a file. This function has a flag that determines whether logging
begins at file open or starts in a paused state. Log messages can
then be controlled via the H5Fstart/stop_logging()
functions. H5Pget_mdc_log_options()
can be used to
examine a file access property list, and
H5Fget_mdc_logging_status()
will return the current
state of the logging flags.
The log format is described in the Metadata Cache Logging document.
H5Pset_mdc_log_options()
.
When enabled and currently logging, the overhead of the logging feature will almost certainly be significant.
The log file is opened when the HDF5 file is opened or created and not when this function is called for the first time.
This function opens the log file and starts logging metadata cache operations for a particular file. Calling this function when logging has already been enabled will be considered an error.
hid_t file_id |
IN: Identifier of an open HDF5 file. |
Release | Change |
1.10.0 | C function introduced with this release. |