From f9a3bbfd7a8a052111192339b4af2535a7e26781 Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Thu, 25 Jan 2007 08:37:36 +0000 Subject: [PATCH] Don't miss the ODLS component from the output. This commit was SVN r13299. --- ompi/tools/ompi_info/components.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ompi/tools/ompi_info/components.cc b/ompi/tools/ompi_info/components.cc index d976957da3..db73daaa33 100644 --- a/ompi/tools/ompi_info/components.cc +++ b/ompi/tools/ompi_info/components.cc @@ -90,6 +90,8 @@ #include "orte/mca/rml/base/base.h" #include "orte/mca/pls/pls.h" #include "orte/mca/pls/base/base.h" +#include "orte/mca/odls/odls.h" +#include "orte/mca/odls/base/base.h" #include "orte/mca/smr/smr.h" #include "orte/mca/smr/base/base.h" #include "orte/mca/sds/sds.h" @@ -228,6 +230,9 @@ void ompi_info::open_components() orte_pls_base_open(); component_map["pls"] = &orte_pls_base.available_components; + orte_odls_base_open(); + component_map["odls"] = &orte_odls_base.available_components; + orte_sds_base_open(); component_map["sds"] = &orte_sds_base_components_available; @@ -301,6 +306,7 @@ void ompi_info::close_components() orte_sds_base_close(); orte_smr_base_close(); orte_pls_base_close(); + orte_odls_base_close(); orte_rmgr_base_close(); orte_rmaps_base_close(); orte_rds_base_close();