This source file includes following definitions.
- mca_pml_base_ft_event
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 #include "ompi_config.h"
20 #include "ompi/constants.h"
21 #include "ompi/types.h"
22
23 #include "ompi/mca/pml/pml.h"
24 #include "ompi/mca/pml/base/base.h"
25
26 #include "ompi/mca/bml/base/base.h"
27
28 int mca_pml_base_ft_event(int state)
29 {
30 int ret;
31
32 #if 0
33 opal_output(0, "pml:base: ft_event: Called (%d)!!\n", state);
34 #endif
35
36 if(OPAL_CRS_CHECKPOINT == state) {
37 ;
38 }
39 else if(OPAL_CRS_CONTINUE == state) {
40 ;
41 }
42 else if(OPAL_CRS_RESTART == state) {
43 ;
44 }
45 else if(OPAL_CRS_TERM == state ) {
46 ;
47 }
48 else {
49 ;
50 }
51
52
53
54
55
56
57 if( OMPI_SUCCESS != (ret = mca_bml.bml_ft_event(state))) {
58 opal_output(0, "pml:base: ft_event: BML ft_event function failed: %d\n",
59 ret);
60 }
61
62 if(OPAL_CRS_CHECKPOINT == state) {
63 ;
64 }
65 else if(OPAL_CRS_CONTINUE == state) {
66 ;
67 }
68 else if(OPAL_CRS_RESTART == state) {
69 ;
70 }
71 else if(OPAL_CRS_TERM == state ) {
72 ;
73 }
74 else {
75 ;
76 }
77
78 return OMPI_SUCCESS;
79 }