1
1

use the newly created JOB_STATE_FT_* events

This commit was SVN r31021.
Этот коммит содержится в:
Adrian Reber 2014-03-12 12:37:14 +00:00
родитель 8d40cd53ae
Коммит 34625b360b

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

@ -37,6 +37,7 @@
#if OPAL_ENABLE_FT_CR == 1
#include "orte/mca/rml/rml.h"
#include "orte/mca/state/state.h"
#endif
#include "orte/mca/rml/base/base.h"
#include "orte/mca/rml/rml_types.h"
@ -170,13 +171,13 @@ orte_rml_oob_ft_event(int state) {
int ret;
if(OPAL_CRS_CHECKPOINT == state) {
;
ORTE_ACTIVATE_JOB_STATE(NULL, ORTE_JOB_STATE_FT_CHECKPOINT);
}
else if(OPAL_CRS_CONTINUE == state) {
;
ORTE_ACTIVATE_JOB_STATE(NULL, ORTE_JOB_STATE_FT_CONTINUE);
}
else if(OPAL_CRS_RESTART == state) {
;
ORTE_ACTIVATE_JOB_STATE(NULL, ORTE_JOB_STATE_FT_RESTART);
}
else if(OPAL_CRS_TERM == state ) {
;
@ -185,12 +186,6 @@ orte_rml_oob_ft_event(int state) {
;
}
if( ORTE_SUCCESS != (ret = orte_rml_oob_ft_event(state)) ) {
ORTE_ERROR_LOG(ret);
exit_status = ret;
goto cleanup;
}
if(OPAL_CRS_CHECKPOINT == state) {
;