1 /*
2 * Copyright (c) 2004-2008 The Trustees of Indiana University and Indiana
3 * University Research and Technology
4 * Corporation. All rights reserved.
5 * Copyright (c) 2004-2005 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) 2007 Cisco Systems, Inc. All rights reserved.
13 * Copyright (c) 2010-2011 Los Alamos National Security, LLC.
14 * All rights reserved.
15 * $COPYRIGHT$
16 *
17 * Additional copyrights may follow
18 *
19 * $HEADER$
20 */
21
22 #ifndef MCA_SHMEM_SYSV_EXPORT_H
23 #define MCA_SHMEM_SYSV_EXPORT_H
24
25 #include "opal_config.h"
26
27 #include "opal/mca/mca.h"
28 #include "opal/mca/shmem/shmem.h"
29
30 BEGIN_C_DECLS
31
32 /**
33 * globally exported variable to hold the sysv component.
34 */
35 typedef struct opal_shmem_sysv_component_t {
36 /* base component struct */
37 opal_shmem_base_component_t super;
38 /* priority for sysv component */
39 int priority;
40 } opal_shmem_sysv_component_t;
41
42 OPAL_MODULE_DECLSPEC extern opal_shmem_sysv_component_t
43 mca_shmem_sysv_component;
44
45 typedef struct opal_shmem_sysv_module_t {
46 opal_shmem_base_module_t super;
47 } opal_shmem_sysv_module_t;
48 extern opal_shmem_sysv_module_t opal_shmem_sysv_module;
49
50 END_C_DECLS
51
52 #endif /* MCA_SHMEM_SYSV_EXPORT_H */