1
1

After review with Rolf, decided to be a bit more safe and instead of

assigning status._cancelled, call MPI_STATUS_SET_CANCELLED.

This commit was SVN r12471.
Этот коммит содержится в:
Jeff Squyres 2006-11-07 20:49:31 +00:00
родитель 427c20af0d
Коммит 31e8f510fe

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

@ -100,6 +100,6 @@ MPI::Status::Set_elements(const MPI::Datatype& datatype, int count)
inline void
MPI::Status::Set_cancelled(bool flag)
{
mpi_status._cancelled = (int) flag;
MPI_Status_set_cancelled(&mpi_status, (int) flag);
}