084281d01e
This commit was SVN r582.
18 строки
348 B
C
18 строки
348 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_Waitany = PMPI_Waitany
|
|
#endif
|
|
|
|
int MPI_Waitany(int count, MPI_Request *array_of_requests,
|
|
int *index, MPI_Status *status) {
|
|
return MPI_SUCCESS;
|
|
}
|