diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-07-22 01:55:14 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-07-22 01:55:14 (GMT) |
commit | 58ed885d1314d2c971c106e70c9271df3a70ebc9 (patch) | |
tree | df8dcecc4112ba026cad00a3fc9c8af64b20a208 /src/H5FSdbg.c | |
parent | 59d5e5c6fbbc951545e079333dc00e5a12dc9065 (diff) | |
download | hdf5-58ed885d1314d2c971c106e70c9271df3a70ebc9.zip hdf5-58ed885d1314d2c971c106e70c9271df3a70ebc9.tar.gz hdf5-58ed885d1314d2c971c106e70c9271df3a70ebc9.tar.bz2 |
[svn-r12491] Description:
Refactored object deletion code for fractal heap to fix scaling problems.
Passing all previous tests again now.
Tested:
FreeBSD 4.11 (sleipnir)
Linux 2.4 (chicago)
Mac OS X (amazon)
Diffstat (limited to 'src/H5FSdbg.c')
-rw-r--r-- | src/H5FSdbg.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/H5FSdbg.c b/src/H5FSdbg.c index a946cf0..69c0f80 100644 --- a/src/H5FSdbg.c +++ b/src/H5FSdbg.c @@ -122,8 +122,14 @@ H5FS_hdr_debug(H5F_t *f, hid_t dxpl_id, haddr_t addr, FILE *stream, int indent, "Total free space tracked:", hdr->tot_space); HDfprintf(stream, "%*s%-*s %Hu\n", indent, "", fwidth, - "Number of free space sections tracked:", - hdr->sect_count); + "Total number of free space sections tracked:", + hdr->tot_sect_count); + HDfprintf(stream, "%*s%-*s %Hu\n", indent, "", fwidth, + "Number of serializable free space sections tracked:", + hdr->serial_sect_count); + HDfprintf(stream, "%*s%-*s %Hu\n", indent, "", fwidth, + "Number of ghost free space sections tracked:", + hdr->ghost_sect_count); HDfprintf(stream, "%*s%-*s %u\n", indent, "", fwidth, "Number of free space section classes:", hdr->nclasses); |