18 строки
371 B
C
18 строки
371 B
C
|
/*
|
||
|
* $HEADERS$
|
||
|
*/
|
||
|
#include "lam_config.h"
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#include "mpi.h"
|
||
|
#include "mpi/interface/c/bindings.h"
|
||
|
|
||
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
||
|
#pragma weak MPI_Comm_accept = PMPI_Comm_accept
|
||
|
#endif
|
||
|
|
||
|
int MPI_Comm_accept(char *port_name, MPI_Info info, int root,
|
||
|
MPI_Comm comm, MPI_Comm *newcomm) {
|
||
|
return MPI_SUCCESS;
|
||
|
}
|