Another Java oversight (sorry, don't have Java configured on my Mac)

This commit is contained in:
Quincey Koziol 2016-12-02 12:46:42 -08:00
parent 2990a638d2
commit 527f28333c

View File

@ -2852,6 +2852,29 @@ public class H5 implements java.io.Serializable {
**/
public synchronized static native void H5Fclear_elink_file_cache(long file_id) throws HDF5LibraryException;
/**
/**
* H5Fstart_mdc_logging starts logging metadata cache events if logging was previously enabled.
*
* @param file_id
* IN: Identifier of the target file.
*
* @exception HDF5LibraryException
* - Error from the HDF-5 Library.
**/
public synchronized static native void H5Fstart_mdc_logging(long file_id) throws HDF5LibraryException;
/**
* H5Fstop_mdc_logging stops logging metadata cache events if logging was previously enabled and is currently ongoing.
*
* @param file_id
* IN: Identifier of the target file.
*
* @exception HDF5LibraryException
* - Error from the HDF-5 Library.
**/
public synchronized static native void H5Fstop_mdc_logging(long file_id) throws HDF5LibraryException;
/**
* H5Fget_mdc_logging_status gets the current metadata cache logging status.
*