This source file includes following definitions.
- component_query
1
2
3
4
5
6
7
8
9
10
11 #include "orte_config.h"
12 #include "orte/types.h"
13 #include "opal/types.h"
14
15 #include "opal/util/show_help.h"
16
17 #include "orte/mca/regx/regx.h"
18 #include "regx_fwd.h"
19
20 static int component_query(mca_base_module_t **module, int *priority);
21
22
23
24
25 orte_regx_base_component_t mca_regx_fwd_component = {
26 .base_version = {
27 MCA_REGX_BASE_VERSION_1_0_0,
28 .mca_component_name = "fwd",
29 MCA_BASE_MAKE_VERSION(component, ORTE_MAJOR_VERSION, ORTE_MINOR_VERSION,
30 ORTE_RELEASE_VERSION),
31 .mca_query_component = component_query,
32 },
33 .base_data = {
34
35 MCA_BASE_METADATA_PARAM_CHECKPOINT
36 },
37 };
38
39 static int component_query(mca_base_module_t **module, int *priority)
40 {
41 *module = (mca_base_module_t*)&orte_regx_fwd_module;
42 *priority = 10;
43 return ORTE_SUCCESS;
44 }