This source file includes following definitions.
- ompi_crcp_base_close
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 #include "ompi_config.h"
20
21 #include "ompi/mca/mca.h"
22 #include "opal/util/output.h"
23 #include "opal/mca/base/base.h"
24
25 #include "ompi/mca/crcp/crcp.h"
26 #include "ompi/mca/crcp/base/base.h"
27
28 #include "ompi/mca/crcp/base/static-components.h"
29
30
31
32
33 OMPI_DECLSPEC ompi_crcp_base_module_t ompi_crcp = {
34 NULL,
35 NULL
36 };
37
38 ompi_crcp_base_component_t ompi_crcp_base_selected_component = {{0}};
39
40 static int ompi_crcp_base_close(void)
41 {
42
43 if( NULL != ompi_crcp.crcp_finalize ) {
44 ompi_crcp.crcp_finalize();
45 }
46
47
48 return mca_base_framework_components_close(&ompi_crcp_base_framework, NULL);
49 }
50
51 MCA_BASE_FRAMEWORK_DECLARE(ompi, crcp, NULL, NULL, NULL, ompi_crcp_base_close,
52 mca_crcp_base_static_components, 0);