summaryrefslogtreecommitdiffstats
path: root/src/H5B2test.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-08-27 16:40:57 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-08-27 16:40:57 (GMT)
commitb1512c79e587a0d1c98dd4995ae7dee8b5b21120 (patch)
tree6fb132f6d6454e9d095108df2ece2c5b8f1df0c2 /src/H5B2test.c
parenta66a20861dd95e97e02ef22a4a445d336f83fb98 (diff)
downloadhdf5-b1512c79e587a0d1c98dd4995ae7dee8b5b21120.zip
hdf5-b1512c79e587a0d1c98dd4995ae7dee8b5b21120.tar.gz
hdf5-b1512c79e587a0d1c98dd4995ae7dee8b5b21120.tar.bz2
[svn-r17429] Description:
Bring work from "compress group's fractal heap" branch back to trunk: reove unnecessary v2 B-tree 'retrieve' callback from v2 B-tree clients. 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 (kagiso) w/PGI compilers, 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 production mode Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode Mac OS X/32 10.5.8 (amazon) in debug mode Mac OS X/32 10.5.8 (amazon) w/C++ & FORTRAN, w/threadsafe, in production mode
Diffstat (limited to 'src/H5B2test.c')
-rw-r--r--src/H5B2test.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/H5B2test.c b/src/H5B2test.c
index 46cd510..3fa5d27 100644
--- a/src/H5B2test.c
+++ b/src/H5B2test.c
@@ -53,7 +53,6 @@
/* Local Prototypes */
/********************/
static herr_t H5B2_test_store(void *nrecord, const void *udata);
-static herr_t H5B2_test_retrieve(void *udata, const void *nrecord);
static herr_t H5B2_test_compare(const void *rec1, const void *rec2);
static herr_t H5B2_test_encode(const H5F_t *f, uint8_t *raw,
const void *nrecord);
@@ -69,7 +68,6 @@ const H5B2_class_t H5B2_TEST[1]={{ /* B-tree class information */
H5B2_TEST_ID, /* Type of B-tree */
sizeof(hsize_t), /* Size of native record */
H5B2_test_store, /* Record storage callback */
- H5B2_test_retrieve, /* Record retrieval callback */
H5B2_test_compare, /* Record comparison callback */
H5B2_test_encode, /* Record encoding callback */
H5B2_test_decode, /* Record decoding callback */
@@ -112,31 +110,6 @@ H5B2_test_store(void *nrecord, const void *udata)
/*-------------------------------------------------------------------------
- * Function: H5B2_test_retrieve
- *
- * Purpose: Retrieve native information from record for B-tree
- *
- * Return: Success: non-negative
- *
- * Failure: negative
- *
- * Programmer: Quincey Koziol
- * Friday, February 25, 2005
- *
- *-------------------------------------------------------------------------
- */
-static herr_t
-H5B2_test_retrieve(void *udata, const void *nrecord)
-{
- FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5B2_test_retrieve)
-
- *(hsize_t *)udata = *(const hsize_t *)nrecord;
-
- FUNC_LEAVE_NOAPI(SUCCEED)
-} /* H5B2_test_retrieve() */
-
-
-/*-------------------------------------------------------------------------
* Function: H5B2_test_compare
*
* Purpose: Compare two native information records, according to some key