summaryrefslogtreecommitdiffstats
path: root/src/H5Gnode.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-05-05 19:18:32 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-05-05 19:18:32 (GMT)
commitb60f90da91886edc2afaaca9bf1587d7591051e1 (patch)
tree9f0c5f09e65af4c1b45e3e0577c2310df8242b7b /src/H5Gnode.c
parentb05a1c671317403994e4bff5564563f41d348eea (diff)
downloadhdf5-b60f90da91886edc2afaaca9bf1587d7591051e1.zip
hdf5-b60f90da91886edc2afaaca9bf1587d7591051e1.tar.gz
hdf5-b60f90da91886edc2afaaca9bf1587d7591051e1.tar.bz2
[svn-r18711] Description:
More changes to move metadata journaling code closer to trunk: - Retire old (H5AC1) cache code & tests - Remove 'clear_dirty_bits' callback from client class struct - Eliminate 'addr' & 'len' parameters from 'free_icr' client callbacks Tested on: Mac OS X/32 10.6.3 (amazon) debug & production Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
Diffstat (limited to 'src/H5Gnode.c')
-rw-r--r--src/H5Gnode.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/H5Gnode.c b/src/H5Gnode.c
index fb6ddd2..82a5608 100644
--- a/src/H5Gnode.c
+++ b/src/H5Gnode.c
@@ -80,7 +80,7 @@ static void *H5G_node_deserialize(haddr_t addr, size_t len, const void *image,
static herr_t H5G_node_serialize(const H5F_t *f, hid_t dxpl_id, haddr_t addr,
size_t len, void *image, void *thing, unsigned *flags, haddr_t *new_addr,
size_t *new_len, void **new_image);
-static herr_t H5G_node_free_icr(haddr_t addr, size_t len, void *thing);
+static herr_t H5G_node_free_icr(void *thing);
/* B-tree callbacks */
static H5RC_t *H5G_node_get_shared(const H5F_t *f, const void *_udata);
@@ -113,7 +113,6 @@ const H5AC_class_t H5AC_SNODE[1] = {{
NULL,
H5G_node_serialize,
H5G_node_free_icr,
- NULL,
}};
/* H5G inherits B-tree like properties from H5B */
@@ -484,7 +483,7 @@ done:
*-------------------------------------------------------------------------
*/
static herr_t
-H5G_node_free_icr(haddr_t UNUSED addr, size_t UNUSED len, void *thing)
+H5G_node_free_icr(void *thing)
{
herr_t ret_value = SUCCEED; /* Return value */