|
3 | 3 | * Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana |
4 | 4 | * University Research and Technology |
5 | 5 | * Corporation. All rights reserved. |
6 | | - * Copyright (c) 2004-2017 The University of Tennessee and The University |
| 6 | + * Copyright (c) 2004-2020 The University of Tennessee and The University |
7 | 7 | * of Tennessee Research Foundation. All rights |
8 | 8 | * reserved. |
9 | 9 | * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, |
@@ -85,6 +85,7 @@ static ompi_mpi_errcode_t ompi_err_not_same; |
85 | 85 | static ompi_mpi_errcode_t ompi_err_no_space; |
86 | 86 | static ompi_mpi_errcode_t ompi_err_no_such_file; |
87 | 87 | static ompi_mpi_errcode_t ompi_err_port; |
| 88 | +static ompi_mpi_errcode_t ompi_err_proc_aborted; |
88 | 89 | static ompi_mpi_errcode_t ompi_err_quota; |
89 | 90 | static ompi_mpi_errcode_t ompi_err_read_only; |
90 | 91 | static ompi_mpi_errcode_t ompi_err_rma_conflict; |
@@ -186,6 +187,7 @@ int ompi_mpi_errcode_init (void) |
186 | 187 | CONSTRUCT_ERRCODE( ompi_err_no_space, MPI_ERR_NO_SPACE, "MPI_ERR_NO_SPACE: no space left on device" ); |
187 | 188 | CONSTRUCT_ERRCODE( ompi_err_no_such_file, MPI_ERR_NO_SUCH_FILE, "MPI_ERR_NO_SUCH_FILE: no such file or directory" ); |
188 | 189 | CONSTRUCT_ERRCODE( ompi_err_port, MPI_ERR_PORT, "MPI_ERR_PORT: invalid port" ); |
| 190 | + CONSTRUCT_ERRCODE( ompi_err_proc_aborted, MPI_ERR_PROC_ABORTED, "MPI_ERR_PROC_ABORTED: operation failed because a remote peer has aborted" ); |
189 | 191 | CONSTRUCT_ERRCODE( ompi_err_quota, MPI_ERR_QUOTA, "MPI_ERR_QUOTA: out of quota" ); |
190 | 192 | CONSTRUCT_ERRCODE( ompi_err_read_only, MPI_ERR_READ_ONLY, "MPI_ERR_READ_ONLY: file is read only" ); |
191 | 193 | CONSTRUCT_ERRCODE( ompi_err_rma_conflict, MPI_ERR_RMA_CONFLICT, "MPI_ERR_RMA_CONFLICT: rma conflict during operation" ); |
@@ -282,6 +284,7 @@ int ompi_mpi_errcode_finalize(void) |
282 | 284 | OBJ_DESTRUCT(&ompi_err_no_space); |
283 | 285 | OBJ_DESTRUCT(&ompi_err_no_such_file); |
284 | 286 | OBJ_DESTRUCT(&ompi_err_port); |
| 287 | + OBJ_DESTRUCT(&ompi_err_proc_aborted); |
285 | 288 | OBJ_DESTRUCT(&ompi_err_quota); |
286 | 289 | OBJ_DESTRUCT(&ompi_err_read_only); |
287 | 290 | OBJ_DESTRUCT(&ompi_err_rma_conflict); |
|
0 commit comments