2004-01-21 03:05:46 +03:00
|
|
|
/*
|
2004-10-15 23:31:47 +04:00
|
|
|
* $HEADER$
|
2004-01-21 03:05:46 +03:00
|
|
|
*/
|
2004-06-07 19:33:53 +04:00
|
|
|
#include "ompi_config.h"
|
2004-01-21 03:05:46 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "mpi.h"
|
2004-03-17 21:45:16 +03:00
|
|
|
#include "mpi/c/bindings.h"
|
2004-03-19 20:29:39 +03:00
|
|
|
#include "errhandler/errhandler.h"
|
|
|
|
#include "communicator/communicator.h"
|
2004-01-21 03:05:46 +03:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
2004-01-21 03:05:46 +03:00
|
|
|
#pragma weak MPI_Comm_get_errhandler = PMPI_Comm_get_errhandler
|
|
|
|
#endif
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#if OMPI_PROFILING_DEFINES
|
2004-04-20 22:50:43 +04:00
|
|
|
#include "mpi/c/profile/defines.h"
|
|
|
|
#endif
|
|
|
|
|
2004-03-19 20:29:39 +03:00
|
|
|
|
2004-07-30 06:58:53 +04:00
|
|
|
static const char FUNC_NAME[] = "MPI_Comm_get_errhandler";
|
|
|
|
|
|
|
|
|
2004-03-19 20:29:39 +03:00
|
|
|
int MPI_Comm_get_errhandler(MPI_Comm comm, MPI_Errhandler *errhandler)
|
|
|
|
{
|
|
|
|
/* Error checking */
|
|
|
|
|
|
|
|
if (MPI_PARAM_CHECK) {
|
2004-07-30 06:58:53 +04:00
|
|
|
OMPI_ERR_INIT_FINALIZE(FUNC_NAME);
|
2004-03-19 20:29:39 +03:00
|
|
|
if (NULL == comm ||
|
|
|
|
MPI_COMM_NULL == comm) {
|
2004-06-07 19:33:53 +04:00
|
|
|
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_ARG,
|
2004-07-30 06:58:53 +04:00
|
|
|
FUNC_NAME);
|
2004-03-19 20:29:39 +03:00
|
|
|
} else if (NULL == errhandler) {
|
2004-06-07 19:33:53 +04:00
|
|
|
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_ARG,
|
2004-07-30 06:58:53 +04:00
|
|
|
FUNC_NAME);
|
2004-03-19 20:29:39 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-15 16:36:22 +03:00
|
|
|
/* Return the errhandler. A quandry. Should we increase the
|
|
|
|
refcount here?
|
2004-03-19 20:29:39 +03:00
|
|
|
|
2004-11-15 16:36:22 +03:00
|
|
|
- Consider that if we *get* an errhandler, we don't have to free
|
|
|
|
it. It's just a handle that was returned to the user. If they
|
|
|
|
never free it (and we increased the refcount), then it'll never
|
|
|
|
be freed.
|
|
|
|
|
|
|
|
- However, if we *don't* increase it and the user *does* free it,
|
|
|
|
then this could cause the refcount to go to 0 prematurely, and
|
|
|
|
a communicator could be left with a stale error handler.
|
|
|
|
|
|
|
|
Add to the mix that MPI-1:196:8-11 says that MPI_ERRHANDLER_FREE
|
|
|
|
will only free the error handler when all the communicators using
|
|
|
|
it have been freed.
|
|
|
|
|
|
|
|
All in all, it seems like we should increase the refcount to be
|
|
|
|
safe here. We're still conformant -- error handlers won't be
|
|
|
|
freed until all the communicators (or other objects using them)
|
|
|
|
are freed *and* any outstanding handles returned by this function
|
|
|
|
(or its peers) are also freed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
OBJ_RETAIN(comm->error_handler);
|
2004-03-19 20:29:39 +03:00
|
|
|
*errhandler = comm->error_handler;
|
|
|
|
|
|
|
|
/* All done */
|
|
|
|
|
|
|
|
return MPI_SUCCESS;
|
2004-01-21 03:05:46 +03:00
|
|
|
}
|