diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-03-20 01:32:35 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-03-20 01:32:35 (GMT) |
commit | 9dad79e3f89fe69857cae152fbcba52b08b19dfd (patch) | |
tree | 3742794b688189a6001ffc3bb367336814ca2786 /src/H5Tprivate.h | |
parent | bb4d9ebc552ca5e8a19b86d961363e6ac4abc6a6 (diff) | |
download | hdf5-9dad79e3f89fe69857cae152fbcba52b08b19dfd.zip hdf5-9dad79e3f89fe69857cae152fbcba52b08b19dfd.tar.gz hdf5-9dad79e3f89fe69857cae152fbcba52b08b19dfd.tar.bz2 |
[svn-r10238] Purpose:
Optimization
Description:
Speed up I/O on enumerated datatypes (including those nested in compound
datatypes, arrays, etc.) if the destination datatype is a proper superset of
the source datatype.
Solution:
Detect the situation and treat as no-op datatype conversion.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'src/H5Tprivate.h')
-rw-r--r-- | src/H5Tprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Tprivate.h b/src/H5Tprivate.h index be4110c..d55e3d3 100644 --- a/src/H5Tprivate.h +++ b/src/H5Tprivate.h @@ -74,7 +74,7 @@ H5_DLL herr_t H5T_close(H5T_t *dt); H5_DLL H5T_class_t H5T_get_class(const H5T_t *dt, htri_t internal); H5_DLL htri_t H5T_detect_class (const H5T_t *dt, H5T_class_t cls); H5_DLL size_t H5T_get_size(const H5T_t *dt); -H5_DLL int H5T_cmp(const H5T_t *dt1, const H5T_t *dt2); +H5_DLL int H5T_cmp(const H5T_t *dt1, const H5T_t *dt2, hbool_t superset); H5_DLL herr_t H5T_debug(const H5T_t *dt, FILE * stream); H5_DLL H5G_entry_t *H5T_entof(H5T_t *dt); H5_DLL htri_t H5T_is_immutable(const H5T_t *dt); |