diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-06-19 10:06:10 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-06-19 10:06:10 (GMT) |
commit | 9db9e82cd1c4e35c6e64fbb2da5eb1db95a0fb55 (patch) | |
tree | df8aaa72b1094bcfacc740a8d33b255c84e1d34e /src/H5HFstat.c | |
parent | 54e2de04d3b7a0359c80cc995f94b63123f4a4da (diff) | |
download | hdf5-9db9e82cd1c4e35c6e64fbb2da5eb1db95a0fb55.zip hdf5-9db9e82cd1c4e35c6e64fbb2da5eb1db95a0fb55.tar.gz hdf5-9db9e82cd1c4e35c6e64fbb2da5eb1db95a0fb55.tar.bz2 |
[svn-r12424] Purpose:
Code checkpoint
Description:
Add in more new features for the fractal heap code, mostly bringing in
more ability for deleting objects (which isn't completely working yet).
Also, checkpoint free space manager code, which is essentially complete
(although it needs some more work after the metadata cache has some additional
features)
Platforms tested:
FreeBSD 4.11 (sleipnir)
Linux 2.4 (chicago)
h5committest
Diffstat (limited to 'src/H5HFstat.c')
-rw-r--r-- | src/H5HFstat.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5HFstat.c b/src/H5HFstat.c index 693a6fa..e0e762f 100644 --- a/src/H5HFstat.c +++ b/src/H5HFstat.c @@ -83,7 +83,7 @@ *------------------------------------------------------------------------- */ herr_t -H5HF_stat_info(H5HF_t *fh, H5HF_stat_t *stats) +H5HF_stat_info(const H5HF_t *fh, H5HF_stat_t *stats) { FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5HF_stat_info) @@ -94,6 +94,8 @@ H5HF_stat_info(H5HF_t *fh, H5HF_stat_t *stats) /* Report statistics for fractal heap */ stats->total_size = fh->hdr->total_size; stats->man_size = fh->hdr->man_size; + stats->man_alloc_size = fh->hdr->man_alloc_size; + stats->man_iter_off = fh->hdr->man_iter_off; stats->std_size = fh->hdr->std_size; stats->man_free_space = fh->hdr->total_man_free; stats->nobjs = fh->hdr->nobjs; |