1
1

Remove last vestiges of fddp and sensor frameworks

This commit was SVN r22252.
Этот коммит содержится в:
Ralph Castain 2009-12-02 16:03:06 +00:00
родитель 12520ca711
Коммит 7c11f9d708
2 изменённых файлов: 1 добавлений и 34 удалений

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

@ -107,12 +107,6 @@
#include "orte/mca/rml/base/base.h"
#include "orte/mca/routed/routed.h"
#include "orte/mca/routed/base/base.h"
#if ORTE_ENABLE_MONITORING
#include "orte/mca/sensor/sensor.h"
#include "orte/mca/sensor/base/base.h"
#include "orte/mca/fddp/fddp.h"
#include "orte/mca/fddp/base/base.h"
#endif
#include "orte/mca/plm/plm.h"
#include "orte/mca/plm/base/base.h"
#if OPAL_ENABLE_FT == 1
@ -444,25 +438,7 @@ void ompi_info_open_components(void)
map->type = strdup("plm");
map->components = &orte_plm_base.available_components;
opal_pointer_array_add(&component_map, map);
#if ORTE_ENABLE_MONITORING
if (ORTE_SUCCESS != orte_sensor_base_open()) {
goto error;
}
map = OBJ_NEW(ompi_info_component_map_t);
map->type = strdup("sensor");
map->components = &mca_sensor_base_components_available;
opal_pointer_array_add(&component_map, map);
if (ORTE_SUCCESS != orte_fddp_base_open()) {
goto error;
}
map = OBJ_NEW(ompi_info_component_map_t);
map->type = strdup("fddp");
map->components = &orte_rmaps_base.available_components;
opal_pointer_array_add(&component_map, map);
#endif
#if OPAL_ENABLE_FT == 1
if (ORTE_SUCCESS != orte_snapc_base_open()) {
goto error;
@ -687,11 +663,6 @@ void ompi_info_close_components()
(void) orte_rmcast_base_close();
#endif
#if ORTE_ENABLE_MONITORING
(void) orte_sensor_base_close();
(void) orte_fddp_base_close();
#endif
#endif
(void) orte_errmgr_base_close();

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

@ -227,10 +227,6 @@ int main(int argc, char *argv[])
#endif
opal_pointer_array_add(&mca_types, "rml");
opal_pointer_array_add(&mca_types, "routed");
#if ORTE_ENABLE_MONITORING
opal_pointer_array_add(&mca_types, "sensor");
opal_pointer_array_add(&mca_types, "fddp");
#endif
opal_pointer_array_add(&mca_types, "plm");
#if OPAL_ENABLE_FT == 1
opal_pointer_array_add(&mca_types, "snapc");