1 /* 2 * Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana 3 * University Research and Technology 4 * Corporation. All rights reserved. 5 * Copyright (c) 2004-2008 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) 2008 UT-Battelle, LLC. All rights reserved. 13 * Copyright (c) 2011 Los Alamos National Security, LLC. All rights 14 * reserved. 15 * Copyright (c) 2015 Research Organization for Information Science 16 * and Technology (RIST). All rights reserved. 17 * $COPYRIGHT$ 18 * 19 * Additional copyrights may follow 20 * 21 * $HEADER$ 22 */ 23 /** @file: 24 */ 25 26 #ifndef ORTE_RAS_PRIVATE_H 27 #define ORTE_RAS_PRIVATE_H 28 29 /* 30 * includes 31 */ 32 #include "orte_config.h" 33 #include "orte/constants.h" 34 #include "orte/types.h" 35 36 #include "opal/class/opal_list.h" 37 38 #include "orte/mca/ras/ras.h" 39 #include "orte/mca/ras/base/base.h" 40 41 42 BEGIN_C_DECLS 43 44 /** 45 * Add the specified node definitions to the registry 46 */ 47 ORTE_DECLSPEC int orte_ras_base_node_insert(opal_list_t*, orte_job_t*); 48 49 END_C_DECLS 50 51 #endif