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 * Copyright (c) 2011 Cisco Systems, Inc. All rights reserved.
15 *
16 * $COPYRIGHT$
17 *
18 * Additional copyrights may follow
19 *
20 * $HEADER$
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