
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>
48 строки
1.2 KiB
C
48 строки
1.2 KiB
C
/*
|
|
* Copyright (c) 2007-2013 Los Alamos National Security, LLC.
|
|
* All rights reserved.
|
|
* Copyright (c) 2014 Intel, Inc. All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef MCA_ROUTED_BASE_H
|
|
#define MCA_ROUTED_BASE_H
|
|
|
|
#include "orte_config.h"
|
|
|
|
#include "orte/mca/mca.h"
|
|
|
|
#include "opal/class/opal_pointer_array.h"
|
|
#include "opal/dss/dss_types.h"
|
|
|
|
#include "orte/mca/rml/rml_types.h"
|
|
#include "orte/mca/routed/routed.h"
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
/*
|
|
* MCA Framework
|
|
*/
|
|
ORTE_DECLSPEC extern mca_base_framework_t orte_routed_base_framework;
|
|
/* select a component */
|
|
ORTE_DECLSPEC int orte_routed_base_select(void);
|
|
|
|
|
|
ORTE_DECLSPEC extern bool orte_routed_base_wait_sync;
|
|
ORTE_DECLSPEC extern opal_pointer_array_t orte_routed_jobfams;
|
|
|
|
ORTE_DECLSPEC void orte_routed_base_xcast_routing(opal_list_t *coll,
|
|
opal_list_t *my_children);
|
|
|
|
ORTE_DECLSPEC int orte_routed_base_process_callback(orte_jobid_t job,
|
|
opal_buffer_t *buffer);
|
|
ORTE_DECLSPEC void orte_routed_base_update_hnps(opal_buffer_t *buf);
|
|
|
|
END_C_DECLS
|
|
|
|
#endif /* MCA_ROUTED_BASE_H */
|