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-2005 The University of Tennessee and The University
0006  *                         of Tennessee Research Foundation.  All rights
0007  *                         reserved.
0008  * Copyright (c) 2004-2010 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) 2010-2011 Oak Ridge National Labs.  All rights reserved.
0013  * Copyright (c) 2011      Los Alamos National Security, LLC.
0014  *                         All rights reserved.
0015  * Copyright (c) 2017-2020 Intel, Inc.  All rights reserved.
0016  * Copyright (c) 2020      Cisco Systems, Inc.  All rights reserved
0017  * Copyright (c) 2021-2024 Nanook Consulting.  All rights reserved.
0018  * $COPYRIGHT$
0019  *
0020  * Additional copyrights may follow
0021  *
0022  * $HEADER$
0023  */
0024 /** @file:
0025  */
0026 
0027 #ifndef PRTE_MCA_ERRMGR_PRIVATE_H
0028 #define PRTE_MCA_ERRMGR_PRIVATE_H
0029 
0030 /*
0031  * includes
0032  */
0033 #include "prte_config.h"
0034 #include "constants.h"
0035 #include "types.h"
0036 
0037 #ifdef HAVE_UNISTD_H
0038 #    include <unistd.h>
0039 #endif /* HAVE_UNISTD_H */
0040 
0041 #include "src/mca/plm/plm_types.h"
0042 #include "src/runtime/prte_globals.h"
0043 
0044 #include "src/mca/errmgr/errmgr.h"
0045 
0046 /*
0047  * Functions for use solely within the ERRMGR framework
0048  */
0049 BEGIN_C_DECLS
0050 
0051 /* declare the base default module */
0052 PRTE_EXPORT extern prte_errmgr_base_module_t prte_errmgr_default_fns;
0053 
0054 /*
0055  * Base functions
0056  */
0057 PRTE_EXPORT void prte_errmgr_base_log(int error_code, char *filename, int line);
0058 
0059 END_C_DECLS
0060 #endif