diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2022-06-09 13:35:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-09 13:35:33 (GMT) |
commit | 8b54201509257e3d2cd968dfae8bcda1ddef4988 (patch) | |
tree | dbad0c2fcb93ae91ca2467b1f3ef7221789bbf3b /java | |
parent | acb6e2da30466aeec3300b462389b3aee344d586 (diff) | |
download | hdf5-8b54201509257e3d2cd968dfae8bcda1ddef4988.zip hdf5-8b54201509257e3d2cd968dfae8bcda1ddef4988.tar.gz hdf5-8b54201509257e3d2cd968dfae8bcda1ddef4988.tar.bz2 |
Develop sync (#1793)
* Synch update
* Branch sync changes
Diffstat (limited to 'java')
-rw-r--r-- | java/src/hdf/hdf5lib/H5.java | 2 | ||||
-rw-r--r-- | java/src/hdf/hdf5lib/HDF5Constants.java | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/java/src/hdf/hdf5lib/H5.java b/java/src/hdf/hdf5lib/H5.java index 9fac20c..905a092 100644 --- a/java/src/hdf/hdf5lib/H5.java +++ b/java/src/hdf/hdf5lib/H5.java @@ -6991,7 +6991,7 @@ public class H5 implements java.io.Serializable { /** * H5Oflush causes all buffers associated with an object to be immediately flushed to disk without * removing the data from the cache. object_id can be any named object associated with an HDF5 file - * ncluding a dataset, a group, or a committed datatype. + * including a dataset, a group, or a committed datatype. * * @param object_id * IN: Identifier of the object to be flushed. diff --git a/java/src/hdf/hdf5lib/HDF5Constants.java b/java/src/hdf/hdf5lib/HDF5Constants.java index cbdf463..b0c639c 100644 --- a/java/src/hdf/hdf5lib/HDF5Constants.java +++ b/java/src/hdf/hdf5lib/HDF5Constants.java @@ -916,6 +916,8 @@ public class HDF5Constants { /** */ public static final int H5R_OBJ_REF_BUF_SIZE = H5R_OBJ_REF_BUF_SIZE(); /** */ + public static final int H5R_DSET_REG_REF_BUF_SIZE = H5R_DSET_REG_REF_BUF_SIZE(); + /** */ public static final int H5R_OBJECT = H5R_OBJECT(); /** */ public static final int H5R_OBJECT1 = H5R_OBJECT1(); @@ -2397,6 +2399,8 @@ public class HDF5Constants { private static native final int H5R_OBJ_REF_BUF_SIZE(); + private static native final int H5R_DSET_REG_REF_BUF_SIZE(); + private static native final int H5R_OBJECT(); private static native final int H5R_OBJECT1(); |