1
1

If the user type has a size of zero let's return zero. We will have a consistent behavior

with MPICH.

This commit was SVN r10230.
Этот коммит содержится в:
George Bosilca 2006-06-06 19:51:42 +00:00
родитель 6258c49a4a
Коммит a64a80dff4

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

@ -43,7 +43,7 @@ int MPI_Get_elements(MPI_Status *status, MPI_Datatype datatype, int *count)
*count = 0;
if( ompi_ddt_type_size( datatype, &size ) == MPI_SUCCESS ) {
if( size == 0 ) {
*count = MPI_UNDEFINED;
/* If the size of the datatype is zero let's return a count of zero */
return MPI_SUCCESS;
}
*count = status->_count / size;