|
Teuchos - Trilinos Tools Package
Version of the Day
|
MPI-specific implementation of CommStatus. More...
#include <Teuchos_DefaultMpiComm.hpp>
Public Member Functions | |
| virtual | ~MpiCommStatus () |
| Destructor (declared virtual for memory safety) | |
| OrdinalType | getSourceRank () |
| The source rank that sent the message. | |
| OrdinalType | getTag () |
| The tag of the received message. | |
| OrdinalType | getError () |
| The error code of the received message. | |
MPI-specific implementation of CommStatus.
Users would not normally create an instance of this class. The only time they might wish to do so is to encapsulate an MPI_Status returned by an external library or by their own code, and pass it into one of our functions like wait() or waitAll().
| OrdinalType | The same template parameter as Comm. Only use int here. We only make this a template class for compatibility with Comm. |
Definition at line 131 of file Teuchos_DefaultMpiComm.hpp.
| virtual Teuchos::MpiCommStatus< OrdinalType >::~MpiCommStatus | ( | ) | [inline, virtual] |
Destructor (declared virtual for memory safety)
Definition at line 136 of file Teuchos_DefaultMpiComm.hpp.
| OrdinalType Teuchos::MpiCommStatus< OrdinalType >::getSourceRank | ( | ) | [inline, virtual] |
The source rank that sent the message.
Implements Teuchos::CommStatus< OrdinalType >.
Definition at line 139 of file Teuchos_DefaultMpiComm.hpp.
| OrdinalType Teuchos::MpiCommStatus< OrdinalType >::getTag | ( | ) | [inline, virtual] |
The tag of the received message.
Implements Teuchos::CommStatus< OrdinalType >.
Definition at line 142 of file Teuchos_DefaultMpiComm.hpp.
| OrdinalType Teuchos::MpiCommStatus< OrdinalType >::getError | ( | ) | [inline] |
The error code of the received message.
Definition at line 145 of file Teuchos_DefaultMpiComm.hpp.
1.7.6.1