20 строки
511 B
C
20 строки
511 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_Grequest_start = PMPI_Grequest_start
|
||
|
#endif
|
||
|
|
||
|
int MPI_Grequest_start(MPI_Grequest_query_function *query_fn,
|
||
|
MPI_Grequest_free_function *free_fn,
|
||
|
MPI_Grequest_cancel_function *cancel_fn,
|
||
|
void *extra_state, MPI_Request *request) {
|
||
|
return MPI_SUCCESS;
|
||
|
}
|