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/H5Dprivate.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/H5Dprivate.h')
-rw-r--r-- | src/H5Dprivate.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/H5Dprivate.h b/src/H5Dprivate.h index 0e51a4b..b2fb668 100644 --- a/src/H5Dprivate.h +++ b/src/H5Dprivate.h @@ -89,6 +89,7 @@ #define H5D_XFER_BTREE_SPLIT_RATIO_NAME "btree_split_ratio" #define H5D_XFER_BTREE_SPLIT_RATIO_SIZE sizeof(double[3]) #define H5D_XFER_BTREE_SPLIT_RATIO_DEF {0.1, 0.5, 0.9} +#ifdef H5_WANT_H5_V1_4_COMPAT /* Definitions for hyperslab caching property */ #define H5D_XFER_HYPER_CACHE_NAME "hyper_cache" #define H5D_XFER_HYPER_CACHE_SIZE sizeof(unsigned) @@ -101,10 +102,7 @@ #define H5D_XFER_HYPER_CACHE_LIM_NAME "hyper_cache_limit" #define H5D_XFER_HYPER_CACHE_LIM_SIZE sizeof(unsigned) #define H5D_XFER_HYPER_CACHE_LIM_DEF 0 -/* Definitions for hyperslab cache limit property */ -#define H5D_XFER_HYPER_CACHE_LIM_NAME "hyper_cache_limit" -#define H5D_XFER_HYPER_CACHE_LIM_SIZE sizeof(unsigned) -#define H5D_XFER_HYPER_CACHE_LIM_DEF 0 +#endif /* H5_WANT_H5_V1_4_COMPAT */ /* Definitions for vlen allocation function property */ #define H5D_XFER_VLEN_ALLOC_NAME "vlen_alloc" #define H5D_XFER_VLEN_ALLOC_SIZE sizeof(H5MM_allocate_t) |