summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2008-12-11 19:29:44 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2008-12-11 19:29:44 (GMT)
commit40dac44efe5a2abc3cce34d2b08a211621bcf85c (patch)
tree8f36905deb5719e371e280f68104251488453547 /tools
parent09ef5a6ef93e074e190ae7ef36abc5333b3f6260 (diff)
downloadhdf5-40dac44efe5a2abc3cce34d2b08a211621bcf85c.zip
hdf5-40dac44efe5a2abc3cce34d2b08a211621bcf85c.tar.gz
hdf5-40dac44efe5a2abc3cce34d2b08a211621bcf85c.tar.bz2
[svn-r16182] Description:
Rename internal routines, variables, macros, typedefs, etc. for chunked dataset storage from "istore" to some variant of "chunk" or "btree". Tested on: Mac OS X/32 10.5.5 (amazon) in debug mode Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe, in production mode FreeBSD/32 6.3 (duty) in debug mode FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode Linux/32 2.6 (jam) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe, in debug mode Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x, w/C++ & FORTRAN, in production mode Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN, w/szip filter, in production mode Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN, in production mode Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Diffstat (limited to 'tools')
-rw-r--r--tools/misc/h5debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/misc/h5debug.c b/tools/misc/h5debug.c
index e11d3bf..77cd9b2 100644
--- a/tools/misc/h5debug.c
+++ b/tools/misc/h5debug.c
@@ -294,7 +294,7 @@ main(int argc, char *argv[])
status = H5G_node_debug(f, H5P_DATASET_XFER_DEFAULT, addr, stdout, 0, VCOL, extra);
break;
- case H5B_ISTORE_ID:
+ case H5B_CHUNK_ID:
/* Check for extra parameters */
if(extra == 0) {
fprintf(stderr, "ERROR: Need number of dimensions of chunk in order to dump chunk B-tree node\n");
@@ -304,7 +304,7 @@ main(int argc, char *argv[])
} /* end if */
ndims = (unsigned)extra;
- status = H5D_istore_debug(f, H5P_DATASET_XFER_DEFAULT, addr, stdout, 0, VCOL, ndims);
+ status = H5D_btree_debug(f, H5P_DATASET_XFER_DEFAULT, addr, stdout, 0, VCOL, ndims);
break;
default: