diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-08-07 21:24:29 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-08-07 21:24:29 (GMT) |
commit | d17d42acd0fbba4b3433937f448c99930553b038 (patch) | |
tree | a6535d4c7f313315ad6e326ded953cdaf6df1ce9 /src/H5HFprivate.h | |
parent | 4f289e5b9240807d9fa5561fd793981334a9f086 (diff) | |
download | hdf5-d17d42acd0fbba4b3433937f448c99930553b038.zip hdf5-d17d42acd0fbba4b3433937f448c99930553b038.tar.gz hdf5-d17d42acd0fbba4b3433937f448c99930553b038.tar.bz2 |
[svn-r12552] Description:
More tweaks on fractal heap statistics, to better separate information
about managed objects from information about "huge" objects.
Also, clean up some compiler warnings, etc. on 64-bit platforms & Windows.
Platforms tested:
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago)
Diffstat (limited to 'src/H5HFprivate.h')
-rw-r--r-- | src/H5HFprivate.h | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/H5HFprivate.h b/src/H5HFprivate.h index 32b6f41..85e0cf6 100644 --- a/src/H5HFprivate.h +++ b/src/H5HFprivate.h @@ -62,13 +62,16 @@ typedef struct H5HF_create_t { /* Fractal heap metadata statistics info */ typedef struct H5HF_stat_t { - hsize_t total_size; /* Total size of heap allocated (man & std) */ - hsize_t nobjs; /* Number of objects in heap */ - hsize_t man_size; /* Total size of managed space in heap */ - hsize_t man_alloc_size; /* Total size of managed space allocated in heap */ + /* "Managed" object info */ + hsize_t man_size; /* Size of managed space in heap */ + hsize_t man_alloc_size; /* Size of managed space allocated in heap */ hsize_t man_iter_off; /* Offset of "new block" iterator in managed heap space */ - hsize_t man_free_space; /* Free space within managed heap */ - hsize_t std_size; /* Total size of standalone space in heap */ + hsize_t man_free_space; /* Free space within managed heap blocks */ + hsize_t man_nobjs; /* Number of "managed" objects in heap */ + + /* "Huge" object info */ + hsize_t huge_size; /* Size of "huge" objects in heap */ + hsize_t huge_nobjs; /* Number of "huge" objects in heap */ } H5HF_stat_t; /* Fractal heap info (forward decl - defined in H5HFpkg.h) */ |