This source file includes following definitions.
- mca_btl_tcp2_ft_event
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 #include "ompi_config.h"
23
24 #include <string.h>
25
26
27 #include "btl_tcp2.h"
28 #include "btl_tcp2_frag.h"
29 #include "btl_tcp2_proc.h"
30 #include "btl_tcp2_endpoint.h"
31
32 #include "btl_tcp2_ft.h"
33
34 int mca_btl_tcp2_ft_event(int state)
35 {
36
37 if(OPAL_CRS_CHECKPOINT == state) {
38 ;
39 }
40 else if(OPAL_CRS_CONTINUE == state) {
41 ;
42 }
43 else if(OPAL_CRS_RESTART == state) {
44 ;
45 }
46 else if(OPAL_CRS_TERM == state ) {
47 ;
48 }
49 else {
50 ;
51 }
52
53 return OMPI_SUCCESS;
54 }
55