1
1

errors_are_fatal_comm_handler takes a pointer to the error constant as

input.

Signed-off-by: Aurelien Bouteiller <bouteill@icl.utk.edu>
Этот коммит содержится в:
Aurelien Bouteiller 2020-08-26 16:05:30 -04:00
родитель c1c71b22b9
Коммит 4df5fcf48c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 08F60797C5941DB2
3 изменённых файлов: 5 добавлений и 3 удалений

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

@ -829,7 +829,7 @@ void mca_pml_ob1_error_handler(
/* TODO: this error should return to the caller and invoke an error
* handler from the MPI API call.
* For now, it is fatal. */
ompi_mpi_errors_are_fatal_comm_handler(NULL, -1, btlinfo);
ompi_mpi_errors_are_fatal_comm_handler(NULL, NULL, btlinfo);
}
#if OPAL_ENABLE_FT_CR == 0

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

@ -181,7 +181,8 @@ recv_request_pml_complete(mca_pml_ob1_recv_request_t *recvreq)
if( MPI_SUCCESS != recvreq->req_recv.req_base.req_ompi.req_status.MPI_ERROR ) {
/* An error after freeing the request MUST be fatal
* MPI3 ch3.7: MPI_REQUEST_FREE */
ompi_mpi_errors_are_fatal_comm_handler(NULL, MPI_ERR_REQUEST, "Recv error after request freed");
int err = MPI_ERR_REQUEST;
ompi_mpi_errors_are_fatal_comm_handler(NULL, &err, "Recv error after request freed");
}
MCA_PML_OB1_RECV_REQUEST_RETURN(recvreq);
} else {

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

@ -278,7 +278,8 @@ send_request_pml_complete(mca_pml_ob1_send_request_t *sendreq)
if( MPI_SUCCESS != sendreq->req_send.req_base.req_ompi.req_status.MPI_ERROR ) {
/* An error after freeing the request MUST be fatal
* MPI3 ch3.7: MPI_REQUEST_FREE */
ompi_mpi_errors_are_fatal_comm_handler(NULL, MPI_ERR_REQUEST, "Send error after request freed");
int err = MPI_ERR_REQUEST;
ompi_mpi_errors_are_fatal_comm_handler(NULL, &err, "Send error after request freed");
}
}
} else {