diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-08-09 20:48:23 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-08-09 20:48:23 (GMT) |
commit | 8f7425d2a2fb9ffb7b7b01822a7f9909ce3a4a14 (patch) | |
tree | 3978c685e4ac642e74ab97192ecace599f0b622a /src/H5FDmpiposix.c | |
parent | d48558126d9c19fe3b418a22086a015bd56997f9 (diff) | |
download | hdf5-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/H5FDmpiposix.c')
-rw-r--r-- | src/H5FDmpiposix.c | 48 |
1 files changed, 41 insertions, 7 deletions
diff --git a/src/H5FDmpiposix.c b/src/H5FDmpiposix.c index e7c5284..2d35944 100644 --- a/src/H5FDmpiposix.c +++ b/src/H5FDmpiposix.c @@ -240,12 +240,18 @@ static int interface_initialize_g = 0; hid_t H5FD_mpiposix_init(void) { + hid_t ret_value=H5FD_MPIPOSIX_g; /* Return value */ + FUNC_ENTER_NOAPI(H5FD_mpiposix_init, FAIL); if (H5I_VFL!=H5Iget_type(H5FD_MPIPOSIX_g)) H5FD_MPIPOSIX_g = H5FDregister(&H5FD_mpiposix_g); - FUNC_LEAVE(H5FD_MPIPOSIX_g); + /* Set return value */ + ret_value=H5FD_MPIPOSIX_g; + +done: + FUNC_LEAVE(ret_value); } /* end H5FD_mpiposix_init() */ @@ -370,13 +376,18 @@ MPI_Comm H5FD_mpiposix_communicator(H5FD_t *_file) { H5FD_mpiposix_t *file = (H5FD_mpiposix_t*)_file; + MPI_Comm ret_value; /* Return value */ FUNC_ENTER_NOAPI(H5FD_mpiposix_communicator, MPI_COMM_NULL); assert(file); assert(H5FD_MPIPOSIX==file->pub.driver_id); - FUNC_LEAVE(file->comm); + /* Set return value */ + ret_value=file->comm; + +done: + FUNC_LEAVE(ret_value); } /* end H5FD_mpi_posix_communicator() */ @@ -399,13 +410,18 @@ int H5FD_mpiposix_mpi_rank(H5FD_t *_file) { H5FD_mpiposix_t *file = (H5FD_mpiposix_t*)_file; + int ret_value; /* Return value */ FUNC_ENTER_NOAPI(H5FD_mpiposix_mpi_rank, FAIL); assert(file); assert(H5FD_MPIPOSIX==file->pub.driver_id); - FUNC_LEAVE(file->mpi_rank); + /* Set return value */ + ret_value=file->mpi_rank; + +done: + FUNC_LEAVE(ret_value); } /* end H5FD_mpiposix_mpi_rank() */ @@ -428,13 +444,18 @@ int H5FD_mpiposix_mpi_size(H5FD_t *_file) { H5FD_mpiposix_t *file = (H5FD_mpiposix_t*)_file; + int ret_value; /* Return value */ FUNC_ENTER_NOAPI(H5FD_mpiposix_mpi_rank, FAIL); assert(file); assert(H5FD_MPIPOSIX==file->pub.driver_id); - FUNC_LEAVE(file->mpi_size); + /* Set return value */ + ret_value=file->mpi_size; + +done: + FUNC_LEAVE(ret_value); } /* end H5FD_mpiposix_mpi_size() */ @@ -814,6 +835,7 @@ H5FD_mpiposix_query(const H5FD_t UNUSED *_file, unsigned long *flags /* out */) *flags|=H5FD_FEAT_AGGREGATE_SMALLDATA; /* OK to aggregate "small" raw data allocations */ } /* end if */ +done: FUNC_LEAVE(ret_value); } /* end H5FD_mpiposix_query() */ @@ -839,13 +861,18 @@ static haddr_t H5FD_mpiposix_get_eoa(H5FD_t *_file) { H5FD_mpiposix_t *file = (H5FD_mpiposix_t*)_file; + haddr_t ret_value; /* Return value */ FUNC_ENTER_NOAPI(H5FD_mpiposix_get_eoa, HADDR_UNDEF); assert(file); assert(H5FD_MPIPOSIX==file->pub.driver_id); - FUNC_LEAVE(file->eoa); + /* Set return value */ + ret_value=file->eoa; + +done: + FUNC_LEAVE(ret_value); } /* end H5FD_mpiposix_get_eoa() */ @@ -870,6 +897,7 @@ static herr_t H5FD_mpiposix_set_eoa(H5FD_t *_file, haddr_t addr) { H5FD_mpiposix_t *file = (H5FD_mpiposix_t*)_file; + herr_t ret_value=SUCCEED; /* Return value */ FUNC_ENTER_NOAPI(H5FD_mpiposix_set_eoa, FAIL); @@ -878,7 +906,8 @@ H5FD_mpiposix_set_eoa(H5FD_t *_file, haddr_t addr) file->eoa = addr; - FUNC_LEAVE(SUCCEED); +done: + FUNC_LEAVE(ret_value); } /* end H5FD_mpi_posix_set_eoa() */ @@ -908,13 +937,18 @@ static haddr_t H5FD_mpiposix_get_eof(H5FD_t *_file) { H5FD_mpiposix_t *file = (H5FD_mpiposix_t*)_file; + haddr_t ret_value; /* Return value */ FUNC_ENTER_NOAPI(H5FD_mpiposix_get_eof, HADDR_UNDEF); assert(file); assert(H5FD_MPIPOSIX==file->pub.driver_id); - FUNC_LEAVE(MAX(file->eof,file->eoa)); + /* Set return value */ + ret_value=MAX(file->eof,file->eoa); + +done: + FUNC_LEAVE(ret_value); } /* end H5FD_mpiposix_get_eof() */ |