1 /*
2 * Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
3 * University Research and Technology
4 * Corporation. All rights reserved.
5 * Copyright (c) 2004-2006 The University of Tennessee and The University
6 * of Tennessee Research Foundation. All rights
7 * reserved.
8 * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
9 * University of Stuttgart. All rights reserved.
10 * Copyright (c) 2004-2005 The Regents of the University of California.
11 * All rights reserved.
12 * Copyright (c) 2006 Los Alamos National Security, LLC. All rights
13 * reserved.
14 *
15 * $COPYRIGHT$
16 *
17 * Additional copyrights may follow
18 *
19 * $HEADER$
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