diff options
| author | Quincey Koziol <koziol@lbl.gov> | 2016-12-18 20:16:31 (GMT) |
|---|---|---|
| committer | Quincey Koziol <koziol@lbl.gov> | 2016-12-18 20:16:31 (GMT) |
| commit | 7f51c8862ea971db773d4c4b043d1bd216aed8fc (patch) | |
| tree | 79c06f3ca2a438b527da6def6e3a50fb8d825712 /java/src/hdf/hdf5lib/H5.java | |
| parent | 700c6ae9851752d8ccf6fc18cdd5b44dcf9603a5 (diff) | |
| parent | fc69eeb9919a0974dcefb3bbc1de6da429e98509 (diff) | |
| download | hdf5-7f51c8862ea971db773d4c4b043d1bd216aed8fc.zip hdf5-7f51c8862ea971db773d4c4b043d1bd216aed8fc.tar.gz hdf5-7f51c8862ea971db773d4c4b043d1bd216aed8fc.tar.bz2 | |
Merge pull request #206 in HDFFV/hdf5 from ~KOZIOL/hdf5:develop_swmr_merge_05 to develop
* commit 'fc69eeb9919a0974dcefb3bbc1de6da429e98509':
Bring Java SWMR changes from revise_chunks to develop branch
Diffstat (limited to 'java/src/hdf/hdf5lib/H5.java')
| -rw-r--r-- | java/src/hdf/hdf5lib/H5.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/java/src/hdf/hdf5lib/H5.java b/java/src/hdf/hdf5lib/H5.java index cd5793d..6b2af4b 100644 --- a/java/src/hdf/hdf5lib/H5.java +++ b/java/src/hdf/hdf5lib/H5.java @@ -2853,6 +2853,17 @@ public class H5 implements java.io.Serializable { public synchronized static native void H5Fclear_elink_file_cache(long file_id) throws HDF5LibraryException; /** + * H5Fstart_swmr_write will activate SWMR writing mode for a file associated with file_id. This routine will + * prepare and ensure the file is safe for SWMR writing. + * + * @param file_id + * IN: Identifier of the target file. + * + * @exception HDF5LibraryException + * - Error from the HDF-5 Library. + **/ + public synchronized static native void H5Fstart_swmr_write(long file_id) throws HDF5LibraryException; + /** * H5Fstart_mdc_logging starts logging metadata cache events if logging was previously enabled. * |
