2004-07-02 01:24:53 +00:00
|
|
|
/*
|
2005-11-05 19:57:48 +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.
|
2015-06-23 20:59:57 -07:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2004-11-28 20:09:25 +00:00
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
* $COPYRIGHT$
|
2015-06-23 20:59:57 -07:00
|
|
|
*
|
2004-11-22 01:38:40 +00:00
|
|
|
* Additional copyrights may follow
|
2015-06-23 20:59:57 -07:00
|
|
|
*
|
2004-07-02 01:24:53 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2008-02-28 01:57:57 +00:00
|
|
|
#ifndef ORTE_PLM_ALPS_EXPORT_H
|
|
|
|
#define ORTE_PLM_ALPS_EXPORT_H
|
2004-07-02 01:24:53 +00:00
|
|
|
|
2008-02-28 01:57:57 +00:00
|
|
|
#include "orte_config.h"
|
2004-07-02 01:24:53 +00:00
|
|
|
|
2015-03-05 20:50:44 -07:00
|
|
|
#include "orte/mca/mca.h"
|
2008-02-28 01:57:57 +00:00
|
|
|
#include "orte/mca/plm/plm.h"
|
2015-12-07 07:43:20 -08:00
|
|
|
#if CRAY_WLM_DETECT
|
|
|
|
#include "wlm_detect.h"
|
|
|
|
#endif
|
2004-07-02 01:24:53 +00:00
|
|
|
|
2008-02-28 01:57:57 +00:00
|
|
|
BEGIN_C_DECLS
|
2004-07-11 04:34:47 +00:00
|
|
|
|
2008-02-28 01:57:57 +00:00
|
|
|
struct orte_plm_alps_component_t {
|
|
|
|
orte_plm_base_component_t super;
|
|
|
|
int priority;
|
2013-03-27 21:09:41 +00:00
|
|
|
bool debug;
|
2010-08-12 14:41:35 +00:00
|
|
|
char *aprun_cmd;
|
2008-02-28 01:57:57 +00:00
|
|
|
char *custom_args;
|
|
|
|
};
|
|
|
|
typedef struct orte_plm_alps_component_t orte_plm_alps_component_t;
|
2004-07-11 04:34:47 +00:00
|
|
|
|
2008-02-28 01:57:57 +00:00
|
|
|
/*
|
|
|
|
* Globally exported variable
|
|
|
|
*/
|
2004-07-02 01:24:53 +00:00
|
|
|
|
2015-06-23 20:59:57 -07:00
|
|
|
ORTE_MODULE_DECLSPEC extern orte_plm_alps_component_t
|
2008-02-28 01:57:57 +00:00
|
|
|
mca_plm_alps_component;
|
|
|
|
ORTE_DECLSPEC extern orte_plm_base_module_t
|
|
|
|
orte_plm_alps_module;
|
2015-12-22 10:48:32 -08:00
|
|
|
extern bool mca_plm_alps_using_aprun;
|
2004-07-02 01:24:53 +00:00
|
|
|
|
2008-02-28 01:57:57 +00:00
|
|
|
END_C_DECLS
|
2004-07-02 01:24:53 +00:00
|
|
|
|
2008-02-28 01:57:57 +00:00
|
|
|
#endif /* ORTE_PLM_ALPS_EXPORT_H */
|