diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-06-05 19:06:29 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-06-05 19:06:29 (GMT) |
commit | 9cd4e394dbbcdb9d790fdc5cb07557ea14819098 (patch) | |
tree | 039eea80db5704ba33ac56f0120d7d3a99bd46b7 /tools/misc | |
parent | 60c6500fad6e102ed3535f12d3f3edf55ff6fed6 (diff) | |
download | hdf5-9cd4e394dbbcdb9d790fdc5cb07557ea14819098.zip hdf5-9cd4e394dbbcdb9d790fdc5cb07557ea14819098.tar.gz hdf5-9cd4e394dbbcdb9d790fdc5cb07557ea14819098.tar.bz2 |
[svn-r8615] Purpose:
Refactor code
Description:
Move chunk and contiguous cached raw data from file information to dataset
information. This simplifies a number of internal interfaces, aligns the
code with it's purpose better and should allow more optimizations to the
chunked data I/O performance.
Platforms tested:
Solaris 2.7 (arabica)
FreeBSD 4.10 (sleipnir)
h5committest
Diffstat (limited to 'tools/misc')
-rw-r--r-- | tools/misc/h5debug.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/misc/h5debug.c b/tools/misc/h5debug.c index a27a4db..e215036 100644 --- a/tools/misc/h5debug.c +++ b/tools/misc/h5debug.c @@ -28,14 +28,15 @@ #define H5O_PACKAGE /*suppress error about including H5Opkg */ #include "H5private.h" -#include "H5Iprivate.h" #include "H5Bprivate.h" -#include "H5Pprivate.h" +#include "H5Dprivate.h" #include "H5Fpkg.h" #include "H5Gprivate.h" #include "H5HGprivate.h" #include "H5HLprivate.h" +#include "H5Iprivate.h" #include "H5Opkg.h" +#include "H5Pprivate.h" /* File drivers */ #include "H5FDfamily.h" @@ -163,7 +164,7 @@ main(int argc, char *argv[]) case H5B_ISTORE_ID: ndims = (int)extra; - status = H5F_istore_debug (f, H5P_DATASET_XFER_DEFAULT, addr, stdout, 0, VCOL, ndims); + status = H5D_istore_debug (f, H5P_DATASET_XFER_DEFAULT, addr, stdout, 0, VCOL, ndims); break; default: |