2006-08-11 01:46:52 +04: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-24 06:59:57 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2006-08-11 01:46:52 +04:00
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
|
|
|
|
* Use is subject to license terms.
|
|
|
|
* $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2006-08-11 01:46:52 +04:00
|
|
|
* Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2006-08-11 01:46:52 +04:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Resource allocation for Grid Engine
|
|
|
|
*/
|
|
|
|
#ifndef ORTE_RAS_GRIDENGINE_H
|
|
|
|
#define ORTE_RAS_GRIDENGINE_H
|
|
|
|
|
2009-03-04 18:35:54 +03:00
|
|
|
#include "orte_config.h"
|
2006-08-11 01:46:52 +04:00
|
|
|
#include "orte/mca/ras/ras.h"
|
|
|
|
#include "orte/mca/ras/base/base.h"
|
|
|
|
|
2009-08-20 15:42:18 +04:00
|
|
|
BEGIN_C_DECLS
|
2006-08-11 01:46:52 +04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-06-24 06:59:57 +03:00
|
|
|
* RAS Component
|
2006-08-11 01:46:52 +04:00
|
|
|
*/
|
|
|
|
struct orte_ras_gridengine_component_t {
|
|
|
|
orte_ras_base_component_t super;
|
|
|
|
int verbose;
|
|
|
|
int priority;
|
2013-03-28 01:09:41 +04:00
|
|
|
bool show_jobid;
|
2006-08-11 01:46:52 +04:00
|
|
|
};
|
|
|
|
typedef struct orte_ras_gridengine_component_t orte_ras_gridengine_component_t;
|
|
|
|
|
2006-08-20 19:54:04 +04:00
|
|
|
ORTE_DECLSPEC extern orte_ras_gridengine_component_t mca_ras_gridengine_component;
|
|
|
|
ORTE_DECLSPEC extern orte_ras_base_module_t orte_ras_gridengine_module;
|
2006-08-11 01:46:52 +04:00
|
|
|
|
|
|
|
|
2009-08-20 15:42:18 +04:00
|
|
|
END_C_DECLS
|
2006-08-11 01:46:52 +04:00
|
|
|
|
|
|
|
#endif
|