This source file includes following definitions.
- mca_btl_tcp_ft_event
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 #include "opal_config.h"
22
23 #include <string.h>
24
25
26 #include "btl_tcp.h"
27 #include "btl_tcp_frag.h"
28 #include "btl_tcp_proc.h"
29 #include "btl_tcp_endpoint.h"
30
31 #include "btl_tcp_ft.h"
32
33 int mca_btl_tcp_ft_event(int state)
34 {
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 return OPAL_SUCCESS;
53 }
54