Remove defunct error constant - we no longer have a GPR that can hold corrupt data!
This commit was SVN r17942.
Этот коммит содержится в:
родитель
4efddc7b0a
Коммит
ebea4d04e4
@ -65,7 +65,6 @@ enum {
|
||||
OMPI_ERR_COMM_FAILURE = ORTE_ERR_COMM_FAILURE,
|
||||
OMPI_UNPACK_INADEQUATE_SPACE = ORTE_ERR_UNPACK_INADEQUATE_SPACE,
|
||||
OMPI_UNPACK_READ_PAST_END_OF_BUFFER = ORTE_ERR_UNPACK_READ_PAST_END_OF_BUFFER,
|
||||
OMPI_ERR_GPR_DATA_CORRUPT = ORTE_ERR_GPR_DATA_CORRUPT,
|
||||
OMPI_ERR_TYPE_MISMATCH = ORTE_ERR_TYPE_MISMATCH,
|
||||
OMPI_ERR_COMPARE_FAILURE = ORTE_ERR_COMPARE_FAILURE,
|
||||
OMPI_ERR_COPY_FAILURE = ORTE_ERR_COPY_FAILURE,
|
||||
|
@ -78,27 +78,26 @@ enum {
|
||||
ORTE_ERR_CONNECTION_REFUSED = (ORTE_ERR_BASE - 6),
|
||||
ORTE_ERR_CONNECTION_FAILED = (ORTE_ERR_BASE - 7),
|
||||
ORTE_ERR_COMM_FAILURE = (ORTE_ERR_BASE - 8),
|
||||
ORTE_ERR_GPR_DATA_CORRUPT = (ORTE_ERR_BASE - 9),
|
||||
ORTE_ERR_COMPARE_FAILURE = (ORTE_ERR_BASE - 10),
|
||||
ORTE_ERR_COPY_FAILURE = (ORTE_ERR_BASE - 11),
|
||||
ORTE_ERR_PROC_STATE_MISSING = (ORTE_ERR_BASE - 12),
|
||||
ORTE_ERR_PROC_EXIT_STATUS_MISSING = (ORTE_ERR_BASE - 13),
|
||||
ORTE_ERR_INDETERMINATE_STATE_INFO = (ORTE_ERR_BASE - 14),
|
||||
ORTE_ERR_NODE_FULLY_USED = (ORTE_ERR_BASE - 15),
|
||||
ORTE_ERR_INVALID_NUM_PROCS = (ORTE_ERR_BASE - 16),
|
||||
ORTE_ERR_SILENT = (ORTE_ERR_BASE - 17),
|
||||
ORTE_ERR_ADDRESSEE_UNKNOWN = (ORTE_ERR_BASE - 18),
|
||||
ORTE_ERR_SYS_LIMITS_PIPES = (ORTE_ERR_BASE - 19),
|
||||
ORTE_ERR_PIPE_SETUP_FAILURE = (ORTE_ERR_BASE - 20),
|
||||
ORTE_ERR_SYS_LIMITS_CHILDREN = (ORTE_ERR_BASE - 21),
|
||||
ORTE_ERR_FAILED_GET_TERM_ATTRS = (ORTE_ERR_BASE - 22),
|
||||
ORTE_ERR_WDIR_NOT_FOUND = (ORTE_ERR_BASE - 23),
|
||||
ORTE_ERR_EXE_NOT_FOUND = (ORTE_ERR_BASE - 24),
|
||||
ORTE_ERR_PIPE_READ_FAILURE = (ORTE_ERR_BASE - 25),
|
||||
ORTE_ERR_EXE_NOT_ACCESSIBLE = (ORTE_ERR_BASE - 26),
|
||||
ORTE_ERR_FAILED_TO_START = (ORTE_ERR_BASE - 27),
|
||||
ORTE_ERR_FILE_NOT_EXECUTABLE = (ORTE_ERR_BASE - 28),
|
||||
ORTE_ERR_HNP_COULD_NOT_START = (ORTE_ERR_BASE - 29)
|
||||
ORTE_ERR_COMPARE_FAILURE = (ORTE_ERR_BASE - 9),
|
||||
ORTE_ERR_COPY_FAILURE = (ORTE_ERR_BASE - 10),
|
||||
ORTE_ERR_PROC_STATE_MISSING = (ORTE_ERR_BASE - 11),
|
||||
ORTE_ERR_PROC_EXIT_STATUS_MISSING = (ORTE_ERR_BASE - 12),
|
||||
ORTE_ERR_INDETERMINATE_STATE_INFO = (ORTE_ERR_BASE - 13),
|
||||
ORTE_ERR_NODE_FULLY_USED = (ORTE_ERR_BASE - 14),
|
||||
ORTE_ERR_INVALID_NUM_PROCS = (ORTE_ERR_BASE - 15),
|
||||
ORTE_ERR_SILENT = (ORTE_ERR_BASE - 16),
|
||||
ORTE_ERR_ADDRESSEE_UNKNOWN = (ORTE_ERR_BASE - 17),
|
||||
ORTE_ERR_SYS_LIMITS_PIPES = (ORTE_ERR_BASE - 18),
|
||||
ORTE_ERR_PIPE_SETUP_FAILURE = (ORTE_ERR_BASE - 19),
|
||||
ORTE_ERR_SYS_LIMITS_CHILDREN = (ORTE_ERR_BASE - 20),
|
||||
ORTE_ERR_FAILED_GET_TERM_ATTRS = (ORTE_ERR_BASE - 21),
|
||||
ORTE_ERR_WDIR_NOT_FOUND = (ORTE_ERR_BASE - 22),
|
||||
ORTE_ERR_EXE_NOT_FOUND = (ORTE_ERR_BASE - 23),
|
||||
ORTE_ERR_PIPE_READ_FAILURE = (ORTE_ERR_BASE - 24),
|
||||
ORTE_ERR_EXE_NOT_ACCESSIBLE = (ORTE_ERR_BASE - 25),
|
||||
ORTE_ERR_FAILED_TO_START = (ORTE_ERR_BASE - 26),
|
||||
ORTE_ERR_FILE_NOT_EXECUTABLE = (ORTE_ERR_BASE - 27),
|
||||
ORTE_ERR_HNP_COULD_NOT_START = (ORTE_ERR_BASE - 28)
|
||||
};
|
||||
|
||||
#define ORTE_ERR_MAX (ORTE_ERR_BASE - 100)
|
||||
|
@ -52,9 +52,6 @@ orte_err2str(int errnum)
|
||||
case ORTE_ERR_COMM_FAILURE:
|
||||
retval = "Communication failure";
|
||||
break;
|
||||
case ORTE_ERR_GPR_DATA_CORRUPT:
|
||||
retval = "GPR data corruption";
|
||||
break;
|
||||
case ORTE_ERR_TYPE_MISMATCH:
|
||||
retval = "Type mismatch";
|
||||
break;
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user