diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-12-04 11:25:01 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-12-04 11:25:01 (GMT) |
commit | 304accfb960d747cc4820ed189de2847e87570ff (patch) | |
tree | f8f37e777475fa954992ef5aa1573a3138af42db /src/H5HFcache.c | |
parent | 786af4b8d7f0e12e58bc7f1ab1ef0928cae9bd17 (diff) | |
download | hdf5-304accfb960d747cc4820ed189de2847e87570ff.zip hdf5-304accfb960d747cc4820ed189de2847e87570ff.tar.gz hdf5-304accfb960d747cc4820ed189de2847e87570ff.tar.bz2 |
[svn-r13015] Description:
Migrate more object header routines to use the H5O_msg_ prefix and put
them into the src/H5Omessage.c code module.
Tested on:
Mac OS X/32 10.4.8 (amazon)
FreeBSD/32 4.11 (sleipnir)
Linux/32 2.4 (heping)
AIX/32 5.? (copper)
Diffstat (limited to 'src/H5HFcache.c')
-rw-r--r-- | src/H5HFcache.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5HFcache.c b/src/H5HFcache.c index 8661af7..e3c07c4 100644 --- a/src/H5HFcache.c +++ b/src/H5HFcache.c @@ -379,11 +379,11 @@ HDfprintf(stderr, "%s: Load heap header, addr = %a\n", FUNC, addr); p += hdr->filter_len; /* Copy the information into the header's I/O pipeline structure */ - if(NULL == H5O_copy(H5O_PLINE_ID, pline, &(hdr->pline))) + if(NULL == H5O_msg_copy(H5O_PLINE_ID, pline, &(hdr->pline))) HGOTO_ERROR(H5E_HEAP, H5E_CANTCOPY, NULL, "can't copy I/O filter pipeline") /* Release the space allocated for the I/O pipeline filters */ - H5O_free(H5O_PLINE_ID, pline); + H5O_msg_free(H5O_PLINE_ID, pline); } /* end if */ else /* Set the heap header's size */ @@ -589,7 +589,7 @@ H5HF_cache_hdr_dest(H5F_t UNUSED *f, H5HF_hdr_t *hdr) /* Release any I/O pipeline filter information */ if(hdr->pline.nused) - H5O_reset(H5O_PLINE_ID, &(hdr->pline)); + H5O_msg_reset(H5O_PLINE_ID, &(hdr->pline)); /* Free the shared info itself */ H5FL_FREE(H5HF_hdr_t, hdr); |