diff options
author | Vailin Choi <vchoi@hdfgroup.org> | 2017-05-09 22:34:15 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@hdfgroup.org> | 2017-05-09 22:34:15 (GMT) |
commit | dc0276a81c1b4bd9d6e57d56526bc5e6bf09109c (patch) | |
tree | ba6c80cbc33f11ed69d319e44619fbc74c01d839 | |
parent | e062a77e0e9e22f5d7c3ede4236e8992fd7daf8d (diff) | |
parent | 8482314d7db83c47947af8ca50457cdb1ddae366 (diff) | |
download | hdf5-dc0276a81c1b4bd9d6e57d56526bc5e6bf09109c.zip hdf5-dc0276a81c1b4bd9d6e57d56526bc5e6bf09109c.tar.gz hdf5-dc0276a81c1b4bd9d6e57d56526bc5e6bf09109c.tar.bz2 |
Merge pull request #498 in HDFFV/hdf5 from ~VCHOI/my_hdf5_fork:develop to develop
* commit '8482314d7db83c47947af8ca50457cdb1ddae366':
Fix for HDFFV-10051 Fix missing declaration for H5D__layout_compact_dirty_test(). Tested on mayll and osx1010test.
-rw-r--r-- | src/H5Dpkg.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Dpkg.h b/src/H5Dpkg.h index b123b81..a6857b9 100644 --- a/src/H5Dpkg.h +++ b/src/H5Dpkg.h @@ -777,6 +777,7 @@ H5_DLL htri_t H5D__mpio_opt_possible(const H5D_io_info_t *io_info, #ifdef H5D_TESTING H5_DLL herr_t H5D__layout_version_test(hid_t did, unsigned *version); H5_DLL herr_t H5D__layout_contig_size_test(hid_t did, hsize_t *size); +H5_DLL herr_t H5D__layout_compact_dirty_test(hid_t did, hbool_t *dirty); H5_DLL herr_t H5D__layout_idx_type_test(hid_t did, H5D_chunk_index_t *idx_type); H5_DLL herr_t H5D__layout_type_test(hid_t did, H5D_layout_t *layout_type); H5_DLL herr_t H5D__current_cache_size_test(hid_t did, size_t *nbytes_used, int *nused); |