diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-12-04 14:34:10 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-12-04 14:34:10 (GMT) |
commit | 06ba931a9500d52c3170ebda6a805da9b8f95378 (patch) | |
tree | 746f71dfc5b314e3c2c848f77af6c30af9b1b363 /src/H5Osdspace.c | |
parent | 304accfb960d747cc4820ed189de2847e87570ff (diff) | |
download | hdf5-06ba931a9500d52c3170ebda6a805da9b8f95378.zip hdf5-06ba931a9500d52c3170ebda6a805da9b8f95378.tar.gz hdf5-06ba931a9500d52c3170ebda6a805da9b8f95378.tar.bz2 |
[svn-r13016] Description:
Finish moving object header message routines into their own source code
module, along with renaming them to have "H5O_msg_" prefix...
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/H5Osdspace.c')
-rw-r--r-- | src/H5Osdspace.c | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/src/H5Osdspace.c b/src/H5Osdspace.c index 750ad4a..7287f50 100644 --- a/src/H5Osdspace.c +++ b/src/H5Osdspace.c @@ -31,11 +31,9 @@ static void *H5O_sdspace_copy(const void *_mesg, void *_dest, unsigned update_fl static size_t H5O_sdspace_size(const H5F_t *f, const void *_mesg); static herr_t H5O_sdspace_reset(void *_mesg); static herr_t H5O_sdspace_free (void *_mesg); -static herr_t H5O_sdspace_get_share (H5F_t *f, const void *_mesg, - H5O_shared_t *sh); -static herr_t H5O_sdspace_set_share (H5F_t *f, void *_mesg, - const H5O_shared_t *sh); -static htri_t H5O_sdspace_is_shared (const void *_mesg); +static herr_t H5O_sdspace_get_share(const void *_mesg, H5O_shared_t *sh); +static herr_t H5O_sdspace_set_share(void *_mesg, const H5O_shared_t *sh); +static htri_t H5O_sdspace_is_shared(const void *_mesg); static herr_t H5O_sdspace_pre_copy_file(H5F_t *file_src, const H5O_msg_class_t *type, const void *mesg_src, hbool_t *deleted, const H5O_copy_t *cpy_info, void *_udata); static herr_t H5O_sdspace_debug(H5F_t *f, hid_t dxpl_id, const void *_mesg, @@ -459,13 +457,10 @@ H5O_sdspace_free (void *mesg) * Programmer: James Laird * Tuesday, October 10, 2006 * - * Modifications: - * *------------------------------------------------------------------------- */ static herr_t -H5O_sdspace_get_share(H5F_t UNUSED *f, const void *_mesg, - H5O_shared_t *sh /*out*/) +H5O_sdspace_get_share(const void *_mesg, H5O_shared_t *sh /*out*/) { const H5S_extent_t *mesg = (const H5S_extent_t *)_mesg; herr_t ret_value = SUCCEED; @@ -492,13 +487,10 @@ H5O_sdspace_get_share(H5F_t UNUSED *f, const void *_mesg, * Programmer: James Laird * Tuesday, October 10, 2006 * - * Modifications: - * *------------------------------------------------------------------------- */ static herr_t -H5O_sdspace_set_share(H5F_t UNUSED *f, void *_mesg/*in,out*/, - const H5O_shared_t *sh) +H5O_sdspace_set_share(void *_mesg/*in,out*/, const H5O_shared_t *sh) { H5S_extent_t *mesg = (H5S_extent_t *)_mesg; herr_t ret_value = SUCCEED; @@ -512,7 +504,7 @@ H5O_sdspace_set_share(H5F_t UNUSED *f, void *_mesg/*in,out*/, ret_value = FAIL; FUNC_LEAVE_NOAPI(ret_value) -} +} /* end H5O_sdspace_set_share() */ /*------------------------------------------------------------------------- |