1
1

Ensure the orted doesn't go into an infinite loop during force-terminate

Signed-off-by: Ralph Castain <rhc@open-mpi.org>
Этот коммит содержится в:
Ralph Castain 2017-06-07 21:44:49 -07:00
родитель 7002535059
Коммит 81ab79f311

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

@ -138,6 +138,14 @@ static void orted_abort(int error_code, char *fmt, ...)
orte_timer_t *timer;
int rc;
/* only do this once */
if (orte_abnormal_term_ordered) {
return;
}
/* set the aborting flag */
orte_abnormal_term_ordered = true;
/* If there was a message, construct it */
va_start(arglist, fmt);
if (NULL != fmt) {