2008-02-17 19:29:06 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2011-12-08 14:05:02 +00:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2008-02-17 19:29:06 +00:00
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2008 UT-Battelle, LLC
|
2011-09-26 21:31:08 +00:00
|
|
|
* Copyright (c) 2011 Los Alamos National Security, LLC.
|
|
|
|
* All rights reserved.
|
2008-02-17 19:29:06 +00:00
|
|
|
* $COPYRIGHT$
|
2011-12-08 14:05:02 +00:00
|
|
|
*
|
2008-02-17 19:29:06 +00:00
|
|
|
* Additional copyrights may follow
|
2011-12-08 14:05:02 +00:00
|
|
|
*
|
2008-02-17 19:29:06 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*
|
|
|
|
* Resource Allocation (ALPS)
|
|
|
|
*/
|
|
|
|
#ifndef ORTE_RAS_ALPS_H
|
|
|
|
#define ORTE_RAS_ALPS_H
|
|
|
|
|
2009-03-04 15:35:54 +00:00
|
|
|
#include "orte_config.h"
|
2008-02-17 19:29:06 +00:00
|
|
|
#include "orte/mca/ras/ras.h"
|
|
|
|
#include "orte/mca/ras/base/base.h"
|
|
|
|
|
2009-08-07 01:15:09 +00:00
|
|
|
BEGIN_C_DECLS
|
2008-02-17 19:29:06 +00:00
|
|
|
|
2009-08-07 01:15:09 +00:00
|
|
|
ORTE_DECLSPEC extern orte_ras_base_component_t mca_ras_alps_component;
|
|
|
|
ORTE_DECLSPEC extern orte_ras_base_module_t orte_ras_alps_module;
|
2011-12-08 14:05:02 +00:00
|
|
|
ORTE_DECLSPEC int orte_ras_alps_get_appinfo_attempts(int *attempts);
|
2011-09-26 21:31:08 +00:00
|
|
|
ORTE_DECLSPEC extern unsigned long int orte_ras_alps_res_id;
|
2008-02-17 19:29:06 +00:00
|
|
|
|
2009-08-07 01:15:09 +00:00
|
|
|
END_C_DECLS
|
2008-02-17 19:29:06 +00:00
|
|
|
|
|
|
|
#endif
|