2005-03-14 20:57:21 +00:00
|
|
|
/*
|
2004-11-22 01:38:40 +00:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
2004-11-28 20:09:25 +00:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* 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$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-08-05 14:01:45 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
2005-03-14 20:57:21 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*
|
|
|
|
* Resource Allocation (LSF over BPROC)
|
2004-08-05 14:01:45 +00:00
|
|
|
*/
|
2005-03-14 20:57:21 +00:00
|
|
|
#ifndef ORTE_RAS_BJS_H
|
|
|
|
#define ORTE_RAS_BJS_H
|
2004-08-05 14:01:45 +00:00
|
|
|
|
2005-03-14 20:57:21 +00:00
|
|
|
#include "mca/ras/ras.h"
|
2004-08-05 14:01:45 +00:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-03-14 20:57:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* RAS Component
|
2004-08-05 14:01:45 +00:00
|
|
|
*/
|
2005-03-14 20:57:21 +00:00
|
|
|
struct orte_ras_bjs_component_t {
|
|
|
|
orte_ras_base_component_t super;
|
|
|
|
int debug;
|
|
|
|
int priority;
|
2005-06-06 13:43:20 +00:00
|
|
|
char *schedule_policy;
|
2005-03-14 20:57:21 +00:00
|
|
|
};
|
|
|
|
typedef struct orte_ras_bjs_component_t orte_ras_bjs_component_t;
|
|
|
|
|
|
|
|
OMPI_COMP_EXPORT extern orte_ras_bjs_component_t mca_ras_bjs_component;
|
|
|
|
OMPI_COMP_EXPORT extern orte_ras_base_module_t orte_ras_bjs_module;
|
|
|
|
|
|
|
|
|
2004-10-20 22:31:03 +00:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
2004-08-05 14:01:45 +00:00
|
|
|
|
2005-03-14 20:57:21 +00:00
|
|
|
#endif
|