18 строки
367 B
C
18 строки
367 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_get_attr = PMPI_Comm_get_attr
|
||
|
#endif
|
||
|
|
||
|
int MPI_Comm_get_attr(MPI_Comm comm, int comm_keyval,
|
||
|
void *attribute_val, int *flag) {
|
||
|
return MPI_SUCCESS;
|
||
|
}
|