1
1

After a bit of testing this morning it seems that the tree component is able to work correctly with the checkpoint/restart functionality. So enable this component when C/R is enabled.

This commit was SVN r18246.
Этот коммит содержится в:
Josh Hursey 2008-04-23 13:01:23 +00:00
родитель 4a9787979e
Коммит 750ce0152c
2 изменённых файлов: 8 добавлений и 3 удалений

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

@ -82,7 +82,9 @@ static int init(void)
/* setup the global condition and lock */
OBJ_CONSTRUCT(&cond, opal_condition_t);
OBJ_CONSTRUCT(&lock, opal_mutex_t);
lifeline = NULL;
return ORTE_SUCCESS;
}
@ -128,7 +130,9 @@ static int finalize(void)
/* destruct the global condition and lock */
OBJ_DESTRUCT(&cond);
OBJ_DESTRUCT(&lock);
lifeline = NULL;
return ORTE_SUCCESS;
}

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

@ -48,7 +48,8 @@ orte_routed_component_t mca_routed_tree_component = {
/* Next the MCA v1.0.0 component meta data */
{
MCA_BASE_METADATA_PARAM_NONE
/* This component can be checkpointed */
MCA_BASE_METADATA_PARAM_CHECKPOINT
},
routed_tree_init
};