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) 2006-2007 Cisco Systems, Inc.  All rights reserved.
13  *
14  * $COPYRIGHT$
15  *
16  * Additional copyrights may follow
17  *
18  * $HEADER$
19  */
20 
21 /**
22  * @file
23  *
24  * Processor stats for Posix systems.
25  *
26  */
27 
28 
29 #ifndef MCA_PSTAT_LINUX_EXPORT_H
30 #define MCA_PSTAT_LINUX_EXPORT_H
31 
32 #include "opal_config.h"
33 
34 #include "opal/mca/mca.h"
35 #include "opal/mca/pstat/pstat.h"
36 
37 
38 BEGIN_C_DECLS
39 
40 /**
41  * Globally exported variable
42  */
43 OPAL_DECLSPEC extern const opal_pstat_base_component_t mca_pstat_linux_component;
44 
45 OPAL_DECLSPEC extern const opal_pstat_base_module_t opal_pstat_linux_module;
46 
47 END_C_DECLS
48 #endif /* MCA_PSTAT_LINUX_EXPORT_H */
49