summaryrefslogtreecommitdiffstats
path: root/src/H5Fprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-10-25 18:54:24 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-10-25 18:54:24 (GMT)
commit057cbbf96c4e4706a1e7458573685e9792e42dad (patch)
tree009bfd9133235d1eb4469bc0072cca97ae69ebd3 /src/H5Fprivate.h
parenta224c0b56d387fb03c43fd439f6f9bf9c061b309 (diff)
downloadhdf5-057cbbf96c4e4706a1e7458573685e9792e42dad.zip
hdf5-057cbbf96c4e4706a1e7458573685e9792e42dad.tar.gz
hdf5-057cbbf96c4e4706a1e7458573685e9792e42dad.tar.bz2
[svn-r2736] Purpose:
Code optimization Description: Minor tweaks throughout the optimized regular hyperslab code to increase speed. This set of improvements increase the benchmark time from taking ~5.46 seconds to ~4.50 seconds, or around a 20% further speedup. Platforms tested: Solaris 2.6 (baldric)
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r--src/H5Fprivate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h
index da19bd6..b9e5876 100644
--- a/src/H5Fprivate.h
+++ b/src/H5Fprivate.h
@@ -342,12 +342,12 @@ __DLL__ herr_t H5F_seq_read(H5F_t *f, hid_t dxpl_id,
const struct H5O_layout_t *layout, const struct H5O_pline_t *pline,
const struct H5O_fill_t *fill, const struct H5O_efl_t *efl,
const struct H5S_t *file_space, size_t elmt_size, hsize_t seq_len,
- hssize_t mem_offset, hssize_t file_offset, void *_buf/*out*/);
+ hssize_t file_offset, void *_buf/*out*/);
__DLL__ herr_t H5F_seq_write (H5F_t *f, hid_t dxpl_id,
const struct H5O_layout_t *layout, const struct H5O_pline_t *pline,
const struct H5O_fill_t *fill, const struct H5O_efl_t *efl,
const struct H5S_t *file_space, size_t elmt_size, hsize_t seq_len,
- hssize_t mem_offset, hssize_t file_offset, const void *_buf);
+ hssize_t file_offset, const void *_buf);
/* Functions that operate on indexed storage */