summaryrefslogtreecommitdiffstats
path: root/src/H5Sselect.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-09-23 15:15:27 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-09-23 15:15:27 (GMT)
commit308982f2359c32277144636d1f62cf20af1b0972 (patch)
tree30a43192053616574992739debe9224e52bcb5d5 /src/H5Sselect.c
parentd354e1f750f1e7f6938f4ba291954c129a577a7d (diff)
downloadhdf5-308982f2359c32277144636d1f62cf20af1b0972.zip
hdf5-308982f2359c32277144636d1f62cf20af1b0972.tar.gz
hdf5-308982f2359c32277144636d1f62cf20af1b0972.tar.bz2
[svn-r19473] Description:
Bring r19472 from trunk to the 1.8 branch: Create a new, more streamlined method of generating I/O sequences when there is only a single block defined by a hyperslab. This improves the performance of Ger Van Diepen's (LOFAR team) benchmark by about 20%. Tested on: FreeBSD/32 6.3 (duty) in debug mode (h5committested on trunk)
Diffstat (limited to 'src/H5Sselect.c')
-rw-r--r--src/H5Sselect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Sselect.c b/src/H5Sselect.c
index 17b7fab..2a0e63f 100644
--- a/src/H5Sselect.c
+++ b/src/H5Sselect.c
@@ -189,10 +189,10 @@ H5S_select_get_seq_list(const H5S_t *space, unsigned flags,
FUNC_ENTER_NOAPI_NOFUNC(H5S_select_get_seq_list)
- assert(space);
+ HDassert(space);
/* Call the selection type's get_seq_list function */
- ret_value=(*space->select.type->get_seq_list)(space,flags,iter,maxseq,maxbytes,nseq,nbytes,off,len);
+ ret_value = (*space->select.type->get_seq_list)(space, flags, iter, maxseq, maxbytes, nseq, nbytes, off, len);
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5S_select_get_seq_list() */