Neutral Binding
MPI_ABORT( comm, errorcode ) [ IN comm] communicator of tasks to abort [ IN errorcode] error code to return to invoking environment
C Binding
int MPI_Abort(MPI_Comm comm, int errorcode)
FORTRAN Binding
MPI_ABORT(COMM, ERRORCODE, IERROR) INTEGER COMM, ERRORCODE, IERROR
C++ Binding (in the MPI:: namespace)
void Comm::Abort(int errorcode)
|
|