2003-11-22 19:36:58 +03:00
|
|
|
/*
|
2004-01-07 18:07:14 +03:00
|
|
|
* $HEADER$
|
2003-11-22 19:36:58 +03:00
|
|
|
*/
|
|
|
|
|
2004-01-11 02:07:38 +03:00
|
|
|
#include "lam_config.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "lam/util/strncpy.h"
|
|
|
|
#include "lam/totalview.h"
|
2004-01-11 03:13:58 +03:00
|
|
|
#include "mpi.h"
|
|
|
|
#include "mpi/interface/c/bindings.h"
|
|
|
|
#include "mpi/communicator/communicator.h"
|
2004-01-11 02:07:38 +03:00
|
|
|
|
2004-01-15 08:24:14 +03:00
|
|
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
|
|
|
#pragma weak MPI_Comm_get_name = PMPI_Comm_get_name
|
2004-01-11 02:07:38 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
int
|
|
|
|
MPI_Comm_get_name(MPI_Comm a, char *b, int *c)
|
|
|
|
{
|
|
|
|
return MPI_ERR_UNKNOWN;
|
|
|
|
}
|