diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-12-28 18:54:34 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-12-28 18:54:34 (GMT) |
commit | 9961fb12777f245340941d14493809ef3c9348c5 (patch) | |
tree | 8d03cd7f002c5017ddb667f52abaf34710904727 /src/H5Gnode.c | |
parent | 9d8f04ded1e821c6b8b1cff8e98405a009c223c6 (diff) | |
download | hdf5-9961fb12777f245340941d14493809ef3c9348c5.zip hdf5-9961fb12777f245340941d14493809ef3c9348c5.tar.gz hdf5-9961fb12777f245340941d14493809ef3c9348c5.tar.bz2 |
[svn-r3209] Purpose:
Updating debugging information for new features, etc.
Description:
Lots of the new features added to the library during the last year or so
have been added without updating the debugging routines used by h5debug.
Solution:
Added more of the new features (although not all of them) to the debugging
routines for h5debug. Also included some more information to expand on
the information printed from h5debug.
Platforms tested:
FreeBSD 4.2 (hawkwind)
Diffstat (limited to 'src/H5Gnode.c')
-rw-r--r-- | src/H5Gnode.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/H5Gnode.c b/src/H5Gnode.c index 4df2142..bf9f959 100644 --- a/src/H5Gnode.c +++ b/src/H5Gnode.c @@ -1190,6 +1190,8 @@ H5G_node_debug(H5F_t *f, haddr_t addr, FILE * stream, intn indent, fprintf(stream, "%*s%-*s %s\n", indent, "", fwidth, "Dirty:", sn->dirty ? "Yes" : "No"); + fprintf(stream, "%*s%-*s %u\n", indent, "", fwidth, + "Size of Node (in bytes):", (unsigned)H5G_node_size(f)); fprintf(stream, "%*s%-*s %d of %d\n", indent, "", fwidth, "Number of Symbols:", sn->nsyms, 2 * H5G_NODE_K(f)); |