Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-23 10:12:56

0001 /*
0002  * Copyright (c) 2004-2010 The Trustees of Indiana University and Indiana
0003  *                         University Research and Technology
0004  *                         Corporation.  All rights reserved.
0005  * Copyright (c) 2004-2011 The University of Tennessee and The University
0006  *                         of Tennessee Research Foundation.  All rights
0007  *                         reserved.
0008  * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
0009  *                         University of Stuttgart.  All rights reserved.
0010  * Copyright (c) 2004-2005 The Regents of the University of California.
0011  *                         All rights reserved.
0012  * Copyright (c) 2012-2013 Los Alamos National Security, Inc.  All rights reserved.
0013  * Copyright (c) 2017-2019 Intel, Inc.  All rights reserved.
0014  * Copyright (c) 2020      Cisco Systems, Inc.  All rights reserved
0015  * Copyright (c) 2021-2022 Nanook Consulting.  All rights reserved.
0016  * $COPYRIGHT$
0017  *
0018  * Additional copyrights may follow
0019  *
0020  * $HEADER$
0021  */
0022 /** @file:
0023  */
0024 
0025 #ifndef PRTE_MCA_ERRMGR_BASE_H
0026 #define PRTE_MCA_ERRMGR_BASE_H
0027 
0028 /*
0029  * includes
0030  */
0031 #include "prte_config.h"
0032 #include "constants.h"
0033 
0034 #include "src/class/pmix_list.h"
0035 
0036 #include "src/mca/errmgr/errmgr.h"
0037 #include "src/mca/mca.h"
0038 
0039 BEGIN_C_DECLS
0040 
0041 /*
0042  * MCA Framework
0043  */
0044 PRTE_EXPORT extern pmix_mca_base_framework_t prte_errmgr_base_framework;
0045 /* select a component */
0046 PRTE_EXPORT int prte_errmgr_base_select(void);
0047 
0048 END_C_DECLS
0049 
0050 #endif