This source file includes following definitions.
- opal_crs_base_close
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 #include "opal_config.h"
18
19 #include "opal/mca/mca.h"
20 #include "opal/mca/base/base.h"
21 #include "opal/constants.h"
22 #include "opal/mca/crs/crs.h"
23 #include "opal/mca/crs/base/base.h"
24
25 int opal_crs_base_close(void)
26 {
27 if( !opal_cr_is_enabled ) {
28 opal_output_verbose(10, opal_crs_base_framework.framework_output,
29 "crs:close: FT is not enabled, skipping!");
30 return OPAL_SUCCESS;
31 }
32
33
34 if( NULL != opal_crs.crs_finalize ) {
35 opal_crs.crs_finalize();
36 }
37
38
39 return mca_base_framework_components_close (&opal_crs_base_framework,
40 NULL);
41 }