1
1
openmpi/ompi/mca/sbgp/base/sbgp_base_init.c
Nathan Hjelm b68d66bb9b MCA: Add the project/project version to the MCA base component
This commit adds support for project_framework_component_* parameter
matching. This is the first step in allowing the same framework name
in multiple projects. This change also bumps the MCA component version
to 2.1.0.

All master frameworks have been updated to use the new component
versioning macro. An mca.h has been added to each project to add a
project specific versioning macro of the form
PROJECT_MCA_VERSION_2_1_0.

Signed-off-by: Nathan Hjelm <hjelmn@me.com>
2015-03-27 10:59:04 -06:00

43 строки
1.2 KiB
C

/*
* Copyright (c) 2009-2012 Oak Ridge National Laboratory. All rights reserved.
* Copyright (c) 2009-2012 Mellanox Technologies. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "ompi_config.h"
#include "ompi/mca/mca.h"
#include "opal/mca/base/base.h"
#include "ompi/mca/sbgp/sbgp.h"
#include "ompi/mca/sbgp/base/base.h"
#include "ompi/include/ompi/constants.h"
int mca_sbgp_base_init(bool enable_progress_threads, bool enable_mpi_threads)
{
mca_sbgp_base_component *sbgp_component = NULL;
mca_base_component_list_item_t *cli;
opal_list_item_t *item;
int ret;
/* loop over component initialization functions */
for (item = opal_list_get_first((opal_list_t *) &mca_sbgp_base_components_in_use);
opal_list_get_end((opal_list_t *) &mca_sbgp_base_components_in_use) != item;
item = opal_list_get_next(item)) {
cli = (mca_base_component_list_item_t *) item;
sbgp_component = (mca_sbgp_base_component *)cli->cli_component;
ret = sbgp_component->sbgp_init_query(true, true);
if( OMPI_SUCCESS != ret) {
return ret;
}
}
return OMPI_SUCCESS;
}