summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@lbl.gov>2016-12-02 21:02:38 (GMT)
committerQuincey Koziol <koziol@lbl.gov>2016-12-02 21:02:38 (GMT)
commita8f85b73f9e8d8fd655a4997f67165529f06b796 (patch)
treeeb64515249146795c62ba5569f96878a448205b4
parent2990a638d2edb84c4f189638b8d6a64e20720d81 (diff)
parent527f28333cb2ec5b247ec348cf6970e0d114891b (diff)
downloadhdf5-a8f85b73f9e8d8fd655a4997f67165529f06b796.zip
hdf5-a8f85b73f9e8d8fd655a4997f67165529f06b796.tar.gz
hdf5-a8f85b73f9e8d8fd655a4997f67165529f06b796.tar.bz2
Merge pull request #185 in HDFFV/hdf5 from ~KOZIOL/hdf5:develop_swmr_merge_03 to develop
* commit '527f28333cb2ec5b247ec348cf6970e0d114891b': Another Java oversight (sorry, don't have Java configured on my Mac)
-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