Add the MPI::Comm::Call_errhandler() function (it was previously
missing!). Fixes trac:1483. This commit was SVN r19503. The following Trac tickets were found above: Ticket 1483 --> https://svn.open-mpi.org/trac/ompi/ticket/1483
Этот коммит содержится в:
родитель
ce42e749a0
Коммит
1382b29aa3
@ -386,6 +386,7 @@ public:
|
||||
|
||||
virtual Errhandler Get_errhandler() const;
|
||||
|
||||
void Call_errhandler(int errorcode) const;
|
||||
|
||||
//
|
||||
// Keys and Attributes
|
||||
|
@ -548,6 +548,12 @@ MPI::Comm::Set_errhandler(const MPI::Errhandler& errhandler) const
|
||||
(void)MPI_Comm_set_errhandler(mpi_comm, errhandler);
|
||||
}
|
||||
|
||||
inline void
|
||||
MPI::Comm::Call_errhandler(int errorcode) const
|
||||
{
|
||||
(void) MPI_Comm_call_errhandler(mpi_comm, errorcode);
|
||||
}
|
||||
|
||||
// 1) original Create_keyval that takes the first 2 arguments as C++
|
||||
// functions
|
||||
inline int
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user