summaryrefslogtreecommitdiffstats
path: root/src/H5FDfamily.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-08-09 20:48:23 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-08-09 20:48:23 (GMT)
commit8f7425d2a2fb9ffb7b7b01822a7f9909ce3a4a14 (patch)
tree3978c685e4ac642e74ab97192ecace599f0b622a /src/H5FDfamily.c
parentd48558126d9c19fe3b418a22086a015bd56997f9 (diff)
downloadhdf5-8f7425d2a2fb9ffb7b7b01822a7f9909ce3a4a14.zip
hdf5-8f7425d2a2fb9ffb7b7b01822a7f9909ce3a4a14.tar.gz
hdf5-8f7425d2a2fb9ffb7b7b01822a7f9909ce3a4a14.tar.bz2
[svn-r5867] Purpose:
Code cleanup Description: Changed the last HRETURN* statements in the FUNC_ENTER macros into HGOTO* macros, which reduces the size of the library binary in certain configurations by another 10% Platforms tested: FreeBSD 4.6 (sleipnir) serial & parallel, IRIX64 6.5 (modi4) serial & parallel
Diffstat (limited to 'src/H5FDfamily.c')
-rw-r--r--src/H5FDfamily.c32
1 files changed, 27 insertions, 5 deletions
diff --git a/src/H5FDfamily.c b/src/H5FDfamily.c
index db43cae..b1d445f 100644
--- a/src/H5FDfamily.c
+++ b/src/H5FDfamily.c
@@ -139,12 +139,18 @@ static int interface_initialize_g = 0;
hid_t
H5FD_family_init(void)
{
+ hid_t ret_value=H5FD_FAMILY_g; /* Return value */
+
FUNC_ENTER_NOAPI(H5FD_family_init, FAIL);
if (H5I_VFL!=H5Iget_type(H5FD_FAMILY_g))
H5FD_FAMILY_g = H5FDregister(&H5FD_family_g);
- FUNC_LEAVE(H5FD_FAMILY_g);
+ /* Set return value */
+ ret_value=H5FD_FAMILY_g;
+
+done:
+ FUNC_LEAVE(ret_value);
}
@@ -377,13 +383,15 @@ static herr_t
H5FD_family_fapl_free(void *_fa)
{
H5FD_family_fapl_t *fa = (H5FD_family_fapl_t*)_fa;
+ herr_t ret_value=SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(H5FD_family_fapl_free, FAIL);
H5I_dec_ref(fa->memb_fapl_id);
H5MM_xfree(fa);
- FUNC_LEAVE(SUCCEED);
+done:
+ FUNC_LEAVE(ret_value);
}
@@ -453,13 +461,15 @@ static herr_t
H5FD_family_dxpl_free(void *_dx)
{
H5FD_family_dxpl_t *dx = (H5FD_family_dxpl_t*)_dx;
+ herr_t ret_value=SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(H5FD_family_dxpl_free, FAIL);
H5I_dec_ref(dx->memb_dxpl_id);
H5MM_xfree(dx);
- FUNC_LEAVE(SUCCEED);
+done:
+ FUNC_LEAVE(ret_value);
}
@@ -679,6 +689,7 @@ H5FD_family_cmp(const H5FD_t *_f1, const H5FD_t *_f2)
ret_value= H5FDcmp(f1->memb[0], f2->memb[0]);
+done:
FUNC_LEAVE(ret_value);
}
@@ -716,6 +727,7 @@ H5FD_family_query(const H5FD_t UNUSED * _f, unsigned long *flags /* out */)
*flags|=H5FD_FEAT_AGGREGATE_SMALLDATA; /* OK to aggregate "small" raw data allocations */
}
+done:
FUNC_LEAVE(ret_value);
}
@@ -742,10 +754,15 @@ static haddr_t
H5FD_family_get_eoa(H5FD_t *_file)
{
H5FD_family_t *file = (H5FD_family_t*)_file;
+ haddr_t ret_value; /* Return value */
FUNC_ENTER_NOAPI(H5FD_family_get_eoa, HADDR_UNDEF);
- FUNC_LEAVE(file->eoa);
+ /* Set return value */
+ ret_value=file->eoa;
+
+done:
+ FUNC_LEAVE(ret_value);
}
@@ -845,6 +862,7 @@ H5FD_family_get_eof(H5FD_t *_file)
H5FD_family_t *file = (H5FD_family_t*)_file;
haddr_t eof=0;
int i;
+ haddr_t ret_value; /* Return value */
FUNC_ENTER_NOAPI(H5FD_family_get_eof, HADDR_UNDEF);
@@ -866,7 +884,11 @@ H5FD_family_get_eof(H5FD_t *_file)
*/
eof += i*file->memb_size;
- FUNC_LEAVE(MAX(eof, file->eoa));
+ /* Set return value */
+ ret_value=MAX(eof, file->eoa);
+
+done:
+ FUNC_LEAVE(ret_value);
}