summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-11-04 21:34:26 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-11-04 21:34:26 (GMT)
commit51bb07ba914eaff9389511f732fdf0e2f920306f (patch)
tree2037e4703ca3f4b5ffee33ceaeec331f45b56c8c /src
parent9f58bc50cf9f786ab822e0bd971b2b42bdc95338 (diff)
downloadhdf5-51bb07ba914eaff9389511f732fdf0e2f920306f.zip
hdf5-51bb07ba914eaff9389511f732fdf0e2f920306f.tar.gz
hdf5-51bb07ba914eaff9389511f732fdf0e2f920306f.tar.bz2
[svn-r19728] Description:
Bring r19725 from trunk to 1.8 branch: Add a little bit of extra info to the output from h5debug when displaying global heaps, and make it dump the file's superblock again when an address is not given on the command line. Tested on: FreeBSD/32 6.3 (duty) w/debug (too minor to require h5committest)
Diffstat (limited to 'src')
-rw-r--r--src/H5HGdbg.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5HGdbg.c b/src/H5HGdbg.c
index 38b7047..f301701 100644
--- a/src/H5HGdbg.c
+++ b/src/H5HGdbg.c
@@ -106,6 +106,9 @@ H5HG_debug(H5F_t *f, hid_t dxpl_id, haddr_t addr, FILE *stream, int indent,
if (h->obj[u].begin) {
sprintf (buf, "Object %u", u);
fprintf (stream, "%*s%s\n", indent, "", buf);
+ fprintf (stream, "%*s%-*s %lu\n", indent+3, "", MIN(fwidth-3, 0),
+ "Obffset in block:",
+ (unsigned long)(h->obj[u].begin - h->chunk));
fprintf (stream, "%*s%-*s %d\n", indent+3, "", MIN(fwidth-3, 0),
"Reference count:",
h->obj[u].nrefs);