diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-08-20 17:32:48 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-08-20 17:32:48 (GMT) |
commit | c951ee8eded3cd63adfeaa87dcdd966ceb3e58c1 (patch) | |
tree | c88c1a6268630dbfb2f55772c50155c82b70baea /java/src/jni/h5oImp.h | |
parent | f125d36da2de24fd09022951e33671af7daffbd3 (diff) | |
parent | 3fbf61190d7ddadac6646b988b324b9a3af172dc (diff) | |
download | hdf5-c951ee8eded3cd63adfeaa87dcdd966ceb3e58c1.zip hdf5-c951ee8eded3cd63adfeaa87dcdd966ceb3e58c1.tar.gz hdf5-c951ee8eded3cd63adfeaa87dcdd966ceb3e58c1.tar.bz2 |
Merge pull request #1885 in HDFFV/hdf5 from ~BYRN/hdf5_adb:hdf5_1_10 to hdf5_1_10
* commit '3fbf61190d7ddadac6646b988b324b9a3af172dc':
HDFFV-10887 merge from develop
Diffstat (limited to 'java/src/jni/h5oImp.h')
-rw-r--r-- | java/src/jni/h5oImp.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/java/src/jni/h5oImp.h b/java/src/jni/h5oImp.h index cb8c776..5241aba 100644 --- a/java/src/jni/h5oImp.h +++ b/java/src/jni/h5oImp.h @@ -202,6 +202,33 @@ JNIEXPORT void JNICALL Java_hdf_hdf5lib_H5_H5Orefresh (JNIEnv*, jclass, jlong); +/* + * Class: hdf_hdf5lib_H5 + * Method: H5Odisable_mdc_flushes + * Signature: (J)V + */ +JNIEXPORT void JNICALL +Java_hdf_hdf5lib_H5_H5Odisable_1mdc_1flushes + (JNIEnv*, jclass, jlong); + +/* + * Class: hdf_hdf5lib_H5 + * Method: H5Oenable_mdc_flushes + * Signature: (J)V + */ +JNIEXPORT void JNICALL +Java_hdf_hdf5lib_H5_H5Oenable_1mdc_1flushes + (JNIEnv*, jclass, jlong); + +/* + * Class: hdf_hdf5lib_H5 + * Method: H5Oare_mdc_flushes_disabled + * Signature: (J)Z + */ +JNIEXPORT jboolean JNICALL +Java_hdf_hdf5lib_H5_H5Oare_1mdc_1flushes_1disabled + (JNIEnv*, jclass, jlong); + #ifdef __cplusplus } /* end extern "C" */ #endif /* __cplusplus */ |