2004-01-22 06:31:32 +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-01-22 06:31:32 +03:00
|
|
|
|
|
|
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
|
|
|
#pragma weak MPI_Topo_test = PMPI_Topo_test
|
|
|
|
#endif
|
|
|
|
|
2004-03-26 17:15:20 +03:00
|
|
|
int MPI_Topo_test(MPI_Comm comm, int *status)
|
|
|
|
{
|
2004-01-22 06:31:32 +03:00
|
|
|
return MPI_SUCCESS;
|
|
|
|
}
|