1
1

Clarify the error output so we can understand if it was a daemon or process that lost its lifeline

This commit was SVN r17880.
Этот коммит содержится в:
Ralph Castain 2008-03-19 19:06:52 +00:00
родитель 2ed0e60321
Коммит ec64bf3da8

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

@ -585,7 +585,10 @@ void mca_oob_tcp_peer_close(mca_oob_tcp_peer_t* peer)
* get stuck in the orte_wait_kill when receiving messages in the
* tcp OOB. */
OPAL_THREAD_UNLOCK(&peer->peer_lock);
orte_errmgr.abort(1, "OOB: Connection to lifeline lost");
opal_output(0, "%s OOB: Connection to lifeline %s lost",
ORTE_NAME_PRINT(ORTE_PROC_MY_NAME),
ORTE_NAME_PRINT(ORTE_PROC_MY_LIFELINE));
orte_errmgr.abort(1, NULL);
}
}