diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-08-02 14:03:40 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-08-02 14:03:40 (GMT) |
commit | 3df2828991d984455054c4c89af78725549d5d0f (patch) | |
tree | 023b000f69879f6b8541f339ae50096fa7cfb278 /src/H5F.c | |
parent | e91a21cd3ba963ca6b97b3bfbc1b84c372b52dec (diff) | |
download | hdf5-3df2828991d984455054c4c89af78725549d5d0f.zip hdf5-3df2828991d984455054c4c89af78725549d5d0f.tar.gz hdf5-3df2828991d984455054c4c89af78725549d5d0f.tar.bz2 |
[svn-r8981] Purpose:
Code cleanup
Description:
Various minor tweaks to clean code up and bring it into closer
syncronization with the release branch.
Platforms tested:
FreeBSD 4.10 (sleipnir) w/parallel
h5committested
IRIX64 6.5 (modi4)
Diffstat (limited to 'src/H5F.c')
-rw-r--r-- | src/H5F.c | 34 |
1 files changed, 0 insertions, 34 deletions
@@ -4397,40 +4397,6 @@ done: /*------------------------------------------------------------------------- - * Function: H5F_mpi_get_size - * - * Purpose: Retrieves the size of the communicator used for the file - * - * Return: Success: The communicator size (non-negative) - * - * Failure: Negative - * - * Programmer: Quincey Koziol - * Friday, January 30, 2004 - * - * Modifications: - * - *------------------------------------------------------------------------- - */ -int -H5F_mpi_get_size(const H5F_t *f) -{ - int ret_value; - - FUNC_ENTER_NOAPI(H5F_mpi_get_size, FAIL) - - assert(f && f->shared); - - /* Dispatch to driver */ - if ((ret_value=H5FD_mpi_get_size(f->shared->lf))<0) - HGOTO_ERROR(H5E_VFL, H5E_CANTGET, FAIL, "driver get_size request failed") - -done: - FUNC_LEAVE_NOAPI(ret_value) -} /* end H5F_mpi_get_size() */ - - -/*------------------------------------------------------------------------- * Function: H5F_mpi_get_comm * * Purpose: Retrieves the file's communicator |