19 строки
413 B
C
19 строки
413 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_Testsome = PMPI_Testsome
|
||
|
#endif
|
||
|
|
||
|
int MPI_Testsome(int incount, MPI_Request array_of_requests[],
|
||
|
int *outcount, int array_of_indices,
|
||
|
MPI_Status array_of_statuses) {
|
||
|
return MPI_SUCCESS;
|
||
|
}
|