summaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2016-12-02 20:46:42 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2016-12-02 20:46:42 (GMT)
commit527f28333cb2ec5b247ec348cf6970e0d114891b (patch)
treeeb64515249146795c62ba5569f96878a448205b4 /java
parent2990a638d2edb84c4f189638b8d6a64e20720d81 (diff)
downloadhdf5-527f28333cb2ec5b247ec348cf6970e0d114891b.zip
hdf5-527f28333cb2ec5b247ec348cf6970e0d114891b.tar.gz
hdf5-527f28333cb2ec5b247ec348cf6970e0d114891b.tar.bz2
Another Java oversight (sorry, don't have Java configured on my Mac)
Diffstat (limited to 'java')
-rw-r--r--java/src/hdf/hdf5lib/H5.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/java/src/hdf/hdf5lib/H5.java b/java/src/hdf/hdf5lib/H5.java
index 6eb29f2..cd5793d 100644
--- a/java/src/hdf/hdf5lib/H5.java
+++ b/java/src/hdf/hdf5lib/H5.java
@@ -2853,6 +2853,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.
*
* @param file_id