OpenMPI  0.1.1
base.h
1 /*
2  * Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
3  * $COPYRIGHT$
4  *
5  * Additional copyrights may follow
6  *
7  * $HEADER$
8  *
9  */
10 
11 #ifndef OPAL_IF_BASE_H
12 #define OPAL_IF_BASE_H
13 
14 #include "opal_config.h"
15 
16 #include "opal/mca/if/if.h"
17 
18 /*
19  * Global functions for MCA overall if open and close
20  */
21 BEGIN_C_DECLS
22 
23 OPAL_DECLSPEC int opal_if_base_open(void);
24 OPAL_DECLSPEC int opal_if_base_close(void);
25 
26 /*
27  * Globals
28  */
29 OPAL_DECLSPEC extern opal_list_t opal_if_components;
30 
31 END_C_DECLS
32 
33 #endif /* OPAL_BASE_IF_H */
Definition: opal_list.h:147