This source file includes following definitions.
- orte_ras_base_finalize
- orte_ras_base_close
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 #include "orte_config.h"
20 #include "orte/constants.h"
21
22 #include <stdio.h>
23
24 #include "orte/mca/mca.h"
25 #include "opal/mca/base/base.h"
26
27 #include "orte/mca/ras/base/base.h"
28
29 #include "orte/mca/ras/base/ras_private.h"
30
31 int orte_ras_base_finalize(void)
32 {
33 if (NULL != orte_ras_base.active_module) {
34 orte_ras_base.active_module->finalize();
35 }
36
37 return ORTE_SUCCESS;
38 }
39
40
41 int orte_ras_base_close(void)
42 {
43
44
45
46 mca_base_components_close(orte_ras_base_framework.framework_output,
47 &orte_ras_base.ras_opened, NULL);
48
49
50 opal_output_close (orte_ras_base_framework.framework_output);
51 orte_ras_base_framework.framework_output = -1;
52
53 return ORTE_SUCCESS;
54 }