diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-05-03 18:53:45 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-05-03 18:53:45 (GMT) |
commit | 3231afc0de3ade97aabfc2003aa47875e1a54921 (patch) | |
tree | 1fab3ec9f4550ce13bbb1ed51674ae9ceb8b6d94 /src/H5Dprivate.h | |
parent | 5fc9dec1df918156589b96ce21a10b7a7d41b354 (diff) | |
download | hdf5-3231afc0de3ade97aabfc2003aa47875e1a54921.zip hdf5-3231afc0de3ade97aabfc2003aa47875e1a54921.tar.gz hdf5-3231afc0de3ade97aabfc2003aa47875e1a54921.tar.bz2 |
[svn-r8471] Purpose:
Code optimization
Description:
Eliminate the B-tree "split_ratios" as a parameter and pull it from the
DXPL instead.
Platforms tested:
Solaris 2.7 (arabica)
FreeBSD 4.9 (sleipnir) w/parallel
too minor to require h5committest
Diffstat (limited to 'src/H5Dprivate.h')
-rw-r--r-- | src/H5Dprivate.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/H5Dprivate.h b/src/H5Dprivate.h index eff4345..7f90465 100644 --- a/src/H5Dprivate.h +++ b/src/H5Dprivate.h @@ -93,6 +93,9 @@ #define H5D_XFER_BKGR_BUF_TYPE_SIZE sizeof(H5T_bkg_t) #define H5D_XFER_BKGR_BUF_TYPE_DEF H5T_BKG_NO /* Definitions for B-tree node splitting ratio property */ +/* (These default B-tree node splitting ratios are also used for splitting + * group's B-trees as well as chunked dataset's B-trees - QAK) + */ #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} @@ -146,7 +149,7 @@ #define H5D_XFER_IO_XFER_MODE_SIZE sizeof(H5FD_mpio_xfer_t) #define H5D_XFER_IO_XFER_MODE_DEF H5FD_MPIO_INDEPENDENT /* Definitions for EDC property */ -#define H5D_XFER_EDC_NAME "error-detecting" +#define H5D_XFER_EDC_NAME "err_detect" #define H5D_XFER_EDC_SIZE sizeof(H5Z_EDC_t) #define H5D_XFER_EDC_DEF H5Z_ENABLE_EDC /* Definitions for filter callback function property */ |