1
1

Quick implementation of the MPI_Address function.

This commit was SVN r1217.
Этот коммит содержится в:
George Bosilca 2004-06-10 17:12:29 +00:00
родитель 09c97d0b00
Коммит 15cab4e5c5

Просмотреть файл

@ -16,6 +16,16 @@
#include "mpi/c/profile/defines.h" #include "mpi/c/profile/defines.h"
#endif #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; return MPI_SUCCESS;
} }