summaryrefslogtreecommitdiffstats
path: root/src/H5D.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-06-19 13:42:02 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-06-19 13:42:02 (GMT)
commit29a0f3e3586080a69f0048bf79dec5e9749fcb5d (patch)
tree4e81a94939ab507737960e90e3ba6634c0610217 /src/H5D.c
parentaefc39ac325f25d1978ad07785ee0b57617d17a5 (diff)
downloadhdf5-29a0f3e3586080a69f0048bf79dec5e9749fcb5d.zip
hdf5-29a0f3e3586080a69f0048bf79dec5e9749fcb5d.tar.gz
hdf5-29a0f3e3586080a69f0048bf79dec5e9749fcb5d.tar.bz2
[svn-r5670] Purpose:
Code cleanup Description: Remove "COALESCE_READS" ifdefs, which were brought in by the DPSS VFL driver and are no longer used. Platforms tested: IRIX64 6.5 (modi4) w/parallel
Diffstat (limited to 'src/H5D.c')
-rw-r--r--src/H5D.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/H5D.c b/src/H5D.c
index ac63596..3b14c43 100644
--- a/src/H5D.c
+++ b/src/H5D.c
@@ -157,9 +157,6 @@ H5D_init_interface(void)
void *def_vlen_free_info = H5D_XFER_VLEN_FREE_INFO_DEF;
hid_t def_vfl_id = H5D_XFER_VFL_ID_DEF;
void *def_vfl_info = H5D_XFER_VFL_INFO_DEF;
-#ifdef COALESCE_READS
- hsize_t def_gather_reads = H5D_XFER_GATHER_READS_DEF;
-#endif /* COALESCE_READS */
size_t def_hyp_vec_size = H5D_XFER_HYPER_VECTOR_SIZE_DEF;
/* Dataset creation property class variables. In sequence, they are,
@@ -258,12 +255,6 @@ H5D_init_interface(void)
if(H5P_register(xfer_pclass,H5D_XFER_VFL_INFO_NAME,H5D_XFER_VFL_INFO_SIZE,&def_vfl_info,NULL,NULL,NULL,NULL,NULL,NULL)<0)
HGOTO_ERROR(H5E_PLIST, H5E_CANTINSERT, FAIL, "can't insert property into class");
-#ifdef COALESCE_READS
- /* Register the 'gather reads' property */
- if(H5P_register(xfer_pclass,H5D_XFER_GATHER_READS_NAME,H5D_XFER_GATHER_READS_SIZE,&def_gather_reads,NULL,NULL,NULL,NULL,NULL)<0)
- HGOTO_ERROR(H5E_PLIST, H5E_CANTINSERT, FAIL, "can't insert property into class");
-#endif /* COALESCE_READS */
-
/* Register the vector size property */
if(H5P_register(xfer_pclass,H5D_XFER_HYPER_VECTOR_SIZE_NAME,H5D_XFER_HYPER_VECTOR_SIZE_SIZE,&def_hyp_vec_size,NULL,NULL,NULL,NULL,NULL,NULL)<0)
HGOTO_ERROR(H5E_PLIST, H5E_CANTINSERT, FAIL, "can't insert property into class");