diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-06-24 19:19:56 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-06-24 19:19:56 (GMT) |
commit | 097510137d908c35ea112012e4df0fadea50ee06 (patch) | |
tree | 3c751a3672b9aa465a72680bd0f548e345d010c4 /src/H5Bpkg.h | |
parent | fe24819a8735ddefb95a92188dc17415a351b489 (diff) | |
download | hdf5-097510137d908c35ea112012e4df0fadea50ee06.zip hdf5-097510137d908c35ea112012e4df0fadea50ee06.tar.gz hdf5-097510137d908c35ea112012e4df0fadea50ee06.tar.bz2 |
[svn-r8736] Purpose:
Code cleanup
Description:
Some code cleanups before starting serious optimization efforts.
Platforms tested:
FreeBSD 4.10 (sleipnir) w/parallel
Solaris 2.7 (arabica)
Too minor to require h5committest
Diffstat (limited to 'src/H5Bpkg.h')
-rw-r--r-- | src/H5Bpkg.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5Bpkg.h b/src/H5Bpkg.h index 6e28d93..578de48 100644 --- a/src/H5Bpkg.h +++ b/src/H5Bpkg.h @@ -53,9 +53,11 @@ struct H5B_t { H5AC_info_t cache_info; /* Information for H5AC cache functions, _must_ be */ /* first field in structure */ const H5B_class_t *type; /*type of tree */ + size_t sizeof_node; /*size of raw (disk) node */ size_t sizeof_rkey; /*size of raw (disk) key */ + size_t total_native_keysize; /*size of native keys */ unsigned ndirty; /*num child ptrs to emit */ - int level; /*node level */ + unsigned level; /*node level */ haddr_t left; /*address of left sibling */ haddr_t right; /*address of right sibling */ unsigned nchildren; /*number of child pointers */ |