b68d66bb9b
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>
49 строки
1.2 KiB
C
49 строки
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 (c) 2012-2013 Los Alamos National Security, Inc. All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef MCA_SBGP_BASE_H
|
|
#define MCA_SBGP_BASE_H
|
|
|
|
#include "ompi_config.h"
|
|
|
|
#include "ompi/mca/mca.h"
|
|
#include "opal/mca/base/mca_base_framework.h"
|
|
/*
|
|
* Global functions for SBGP
|
|
*/
|
|
|
|
/* components in use */
|
|
OMPI_MODULE_DECLSPEC extern opal_list_t mca_sbgp_base_components_in_use;
|
|
OMPI_MODULE_DECLSPEC extern int mca_sbgp_base_components_in_use_inited;
|
|
OMPI_DECLSPEC extern char *ompi_sbgp_subgroups_string;
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
/*
|
|
* MCA Framework
|
|
*/
|
|
OMPI_DECLSPEC extern mca_base_framework_t ompi_sbgp_base_framework;
|
|
|
|
/* select a component */
|
|
OMPI_DECLSPEC int mca_sbgp_base_init(bool, bool);
|
|
|
|
/* subgrouping component and key value */
|
|
struct sbgp_base_component_keyval_t {
|
|
mca_base_component_list_item_t component;
|
|
char *key_value;
|
|
};
|
|
typedef struct sbgp_base_component_keyval_t sbgp_base_component_keyval_t;
|
|
OBJ_CLASS_DECLARATION(sbgp_base_component_keyval_t);
|
|
|
|
END_C_DECLS
|
|
|
|
#endif /* MCA_SBGP_BASE_H */
|