diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-12-06 19:05:12 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-12-06 19:05:12 (GMT) |
commit | 7a30de3a2bf48a81dcf7679782ba4e247bd8991e (patch) | |
tree | bf62d63e3303453ed60f8bca611f8ad56b37fedd /src/H5Ppublic.h | |
parent | 1b67380c0abcf87ae05f8661647dacd75858b50e (diff) | |
download | hdf5-7a30de3a2bf48a81dcf7679782ba4e247bd8991e.zip hdf5-7a30de3a2bf48a81dcf7679782ba4e247bd8991e.tar.gz hdf5-7a30de3a2bf48a81dcf7679782ba4e247bd8991e.tar.bz2 |
[svn-r4680] Purpose:
Code cleanup
Description:
Property that H5P(g|s)et_hyper_cache uses is no longer in use inside the
library.
Solution:
Removed H5P(g|s)et_hyper_cache API functions, except when backward
compatibility is turned on. When backward compatibility is turned on,
the property is defined by the library, but unused internally.
Platforms tested:
FreeBSD 4.4 (sleipnir)
Diffstat (limited to 'src/H5Ppublic.h')
-rw-r--r-- | src/H5Ppublic.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5Ppublic.h b/src/H5Ppublic.h index fc5f551..5f404b6 100644 --- a/src/H5Ppublic.h +++ b/src/H5Ppublic.h @@ -6,7 +6,7 @@ * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * - * hdf/COPYING file. * + * COPYING file. * * * ****************************************************************************/ @@ -215,10 +215,12 @@ __DLL__ herr_t H5Pget_cache(hid_t plist_id, int *mdc_nelmts/*out*/, size_t *rdcc_nelmts/*out*/, size_t *rdcc_nbytes/*out*/, double *rdcc_w0); #endif /* H5_WANT_H5_V1_4_COMPAT */ +#ifdef H5_WANT_H5_V1_4_COMPAT __DLL__ herr_t H5Pset_hyper_cache(hid_t plist_id, unsigned cache, unsigned limit); __DLL__ herr_t H5Pget_hyper_cache(hid_t plist_id, unsigned *cache, unsigned *limit); +#endif /* H5_WANT_H5_V1_4_COMPAT */ __DLL__ herr_t H5Pset_btree_ratios(hid_t plist_id, double left, double middle, double right); __DLL__ herr_t H5Pget_btree_ratios(hid_t plist_id, double *left/*out*/, |