Skip to content
Snippets Groups Projects
Verified Commit 03ec9974 authored by raphael.bach's avatar raphael.bach
Browse files

Aborts with `MPI_ERR_UNKNOWN` in `fmpi_mpi_abort()`

parent 903a7b1d
No related branches found
No related tags found
No related merge requests found
......@@ -169,7 +169,7 @@ void fmpi_mpi_abort(const struct fmpi_mpi_ctx * const ctx)
{
assert(ctx != NULL);
if(fmpi_mpi_finalized(ctx) == false) {
int err_id = MPI_Abort(MPI_COMM_WORLD, 1);
int err_id = MPI_Abort(MPI_COMM_WORLD, MPI_ERR_UNKNOWN);
fmpi_mpi_check_error(ctx, err_id, "MPI_Abort");
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment