diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-11-07 13:12:06 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-11-07 13:12:06 (GMT) |
commit | e8f31a24797a129fd8ed2c7ec5e2a080d0b5fb88 (patch) | |
tree | 41ef126f79131fbafb8c5826a6628ba8b3be1c65 /src/H5B2stat.c | |
parent | 401f0c995f4c28d3bf4c15c859f0195bba70bdd3 (diff) | |
download | hdf5-e8f31a24797a129fd8ed2c7ec5e2a080d0b5fb88.zip hdf5-e8f31a24797a129fd8ed2c7ec5e2a080d0b5fb88.tar.gz hdf5-e8f31a24797a129fd8ed2c7ec5e2a080d0b5fb88.tar.bz2 |
[svn-r17848] Description:
Further refactoring v2 B-trees so that they can get context to the
encode/decode client callbacks:
- Switch tests to using refactored routines
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in debug mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Mac OS X/32 10.6.1 (amazon) in debug mode
Mac OS X/32 10.6.1 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
Diffstat (limited to 'src/H5B2stat.c')
-rw-r--r-- | src/H5B2stat.c | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/H5B2stat.c b/src/H5B2stat.c index a5301de..391d96d 100644 --- a/src/H5B2stat.c +++ b/src/H5B2stat.c @@ -71,6 +71,43 @@ /*------------------------------------------------------------------------- + * Function: H5B2_stat_info_2 + * + * Purpose: Retrieve metadata statistics for a v2 B-tree + * + * Return: Success: non-negative + * Failure: negative + * + * Programmer: Quincey Koziol + * Monday, March 6, 2006 + * + *------------------------------------------------------------------------- + */ +herr_t +H5B2_stat_info_2(H5B2_t *bt2, hid_t dxpl_id, H5B2_stat_t *info) +{ + H5B2_hdr_t *hdr; /* Pointer to the B-tree header */ + + FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5B2_stat_info_2) + + /* Check arguments. */ + HDassert(info); + + /* Set the shared v2 B-tree header's file context for this operation */ + bt2->hdr->f = bt2->f; + + /* Get the v2 B-tree header */ + hdr = bt2->hdr; + + /* Get information about the B-tree */ + info->depth = hdr->depth; + info->nrecords = hdr->root.all_nrec; + + FUNC_LEAVE_NOAPI(SUCCEED) +} /* H5B2_stat_info_2() */ + + +/*------------------------------------------------------------------------- * Function: H5B2_stat_info * * Purpose: Retrieve metadata statistics for a v2 B-tree |