2004-01-30 00:42:40 +03:00
|
|
|
/*
|
|
|
|
* $HEADERS$
|
|
|
|
*/
|
|
|
|
#include "lam_config.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "mpi.h"
|
2004-03-17 21:45:16 +03:00
|
|
|
#include "mpi/c/bindings.h"
|
2004-04-21 03:12:34 +04:00
|
|
|
#include "op/op.h"
|
|
|
|
#include "errhandler/errhandler.h"
|
|
|
|
#include "communicator/communicator.h"
|
2004-01-30 00:42:40 +03:00
|
|
|
|
|
|
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
|
|
|
#pragma weak MPI_Op_free = PMPI_Op_free
|
|
|
|
#endif
|
|
|
|
|
2004-04-20 22:50:43 +04:00
|
|
|
#if LAM_PROFILING_DEFINES
|
|
|
|
#include "mpi/c/profile/defines.h"
|
|
|
|
#endif
|
|
|
|
|
2004-04-21 03:12:34 +04:00
|
|
|
int MPI_Op_free(MPI_Op *op)
|
|
|
|
{
|
|
|
|
/* Error checking */
|
|
|
|
|
|
|
|
if (MPI_PARAM_CHECK) {
|
|
|
|
if (NULL == op ||
|
|
|
|
lam_op_is_intrinsic(*op)) {
|
|
|
|
return LAM_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_ARG,
|
|
|
|
"MPI_Op_free");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We have a valid op, release it */
|
|
|
|
|
|
|
|
OBJ_RELEASE(*op);
|
|
|
|
*op = MPI_OP_NULL;
|
|
|
|
|
|
|
|
/* All done */
|
|
|
|
|
|
|
|
return MPI_SUCCESS;
|
2004-01-30 00:42:40 +03:00
|
|
|
}
|