diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-06-19 13:42:02 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-06-19 13:42:02 (GMT) |
commit | 29a0f3e3586080a69f0048bf79dec5e9749fcb5d (patch) | |
tree | 4e81a94939ab507737960e90e3ba6634c0610217 /src/H5Farray.c | |
parent | aefc39ac325f25d1978ad07785ee0b57617d17a5 (diff) | |
download | hdf5-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/H5Farray.c')
-rw-r--r-- | src/H5Farray.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/H5Farray.c b/src/H5Farray.c index 7d046cd..b019ee8 100644 --- a/src/H5Farray.c +++ b/src/H5Farray.c @@ -150,9 +150,6 @@ H5F_arr_read(H5F_t *f, hid_t dxpl_id, const H5O_layout_t *layout, H5FD_mpio_xfer_t xfer_mode=H5FD_MPIO_INDEPENDENT; H5P_genplist_t *plist=NULL; /* Property list */ #endif -#ifdef COALESCE_READS - hsize_t gather_reads; /* # of MPIO reads to gather */ -#endif herr_t ret_value = SUCCEED; /* Return value */ FUNC_ENTER_NOAPI(H5F_arr_read, FAIL); @@ -278,15 +275,7 @@ H5F_arr_read(H5F_t *f, hid_t dxpl_id, const H5O_layout_t *layout, } #endif -#ifdef COALESCE_READS - for (z=0, gather_reads = nelmts - 1; z<nelmts; z++, gather_reads--) { - /* Track the number of reads to gather */ - if(H5P_set(plist, H5D_XFER_GATHER_READS_NAME, &gather_reads)<0) - HGOTO_ERROR (H5E_PLIST, H5E_CANTGET, FAIL, "Can't retrieve gather reads"); -#else for (z=0; z<nelmts; z++) { -#endif - /* Read directly from file if the dataset is in an external file */ /* Note: We can't use data sieve buffers for datasets in external files * because the 'addr' of all external files is set to 0 (above) and |