This source file includes following definitions.
- rte_pmix_open
- rte_pmix_close
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 #include "ompi_config.h"
22 #include "ompi/constants.h"
23
24 #include "opal/threads/threads.h"
25 #include "opal/class/opal_list.h"
26
27 #include "ompi/mca/rte/rte.h"
28 #include "rte_pmix.h"
29
30
31
32
33 const char *ompi_rte_pmix_component_version_string =
34 "OMPI pmix rte MCA component version " OMPI_VERSION;
35
36
37
38
39 static int rte_pmix_open(void);
40 static int rte_pmix_close(void);
41
42
43
44
45
46
47 ompi_rte_component_t mca_rte_pmix_component = {
48
49
50
51 .base_version = {
52 OMPI_RTE_BASE_VERSION_1_0_0,
53
54
55 .mca_component_name = "pmix",
56 MCA_BASE_MAKE_VERSION(component, OMPI_MAJOR_VERSION, OMPI_MINOR_VERSION,
57 OMPI_RELEASE_VERSION),
58
59
60 .mca_open_component = rte_pmix_open,
61 .mca_close_component = rte_pmix_close,
62 },
63 .base_data = {
64
65 MCA_BASE_METADATA_PARAM_CHECKPOINT
66 },
67 };
68
69 static int rte_pmix_open(void)
70 {
71 return OMPI_SUCCESS;
72 }
73
74 static int rte_pmix_close(void)
75 {
76 return OMPI_SUCCESS;
77 }