Quick implementation of the MPI_Address function.
This commit was SVN r1217.
Этот коммит содержится в:
родитель
09c97d0b00
Коммит
15cab4e5c5
@ -16,6 +16,16 @@
|
||||
#include "mpi/c/profile/defines.h"
|
||||
#endif
|
||||
|
||||
int MPI_Address(void *location, MPI_Aint *address){
|
||||
static char FUNC_NAME[] = "MPI_Address";
|
||||
|
||||
int MPI_Address(void *location, MPI_Aint *address)
|
||||
{
|
||||
if( MPI_PARAM_CHECK ) {
|
||||
if( OMPI_MPI_INVALID_STATE ) {
|
||||
OMPI_ERRHANDLER_RETURN( MPI_ERR_INTERN, (ompi_communicator_t*)NULL,
|
||||
MPI_ERR_INTERN, FUNC_NAME );
|
||||
}
|
||||
}
|
||||
*address = (MPI_Aint)location;
|
||||
return MPI_SUCCESS;
|
||||
}
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user