Back to home page

EIC code displayed by LXR

 
 

    


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

0001 /*
0002  * Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
0003  *                         University Research and Technology
0004  *                         Corporation.  All rights reserved.
0005  * Copyright (c) 2004-2008 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) 2008      UT-Battelle, LLC. All rights reserved.
0013  * Copyright (c) 2011      Los Alamos National Security, LLC.  All rights
0014  *                         reserved.
0015  * Copyright (c) 2015      Research Organization for Information Science
0016  *                         and Technology (RIST). All rights reserved.
0017  * Copyright (c) 2019      Intel, Inc.  All rights reserved.
0018  * Copyright (c) 2020      Cisco Systems, Inc.  All rights reserved
0019  * Copyright (c) 2021-2022 Nanook Consulting.  All rights reserved.
0020  * $COPYRIGHT$
0021  *
0022  * Additional copyrights may follow
0023  *
0024  * $HEADER$
0025  */
0026 /** @file:
0027  */
0028 
0029 #ifndef PRTE_RAS_PRIVATE_H
0030 #define PRTE_RAS_PRIVATE_H
0031 
0032 /*
0033  * includes
0034  */
0035 #include "prte_config.h"
0036 #include "constants.h"
0037 #include "types.h"
0038 
0039 #include "src/class/pmix_list.h"
0040 
0041 #include "src/mca/ras/base/base.h"
0042 #include "src/mca/ras/ras.h"
0043 
0044 BEGIN_C_DECLS
0045 
0046 /**
0047  * Add the specified node definitions to the registry
0048  */
0049 PRTE_EXPORT int prte_ras_base_node_insert(pmix_list_t *, prte_job_t *);
0050 
0051 END_C_DECLS
0052 
0053 #endif