2005-03-14 23:57:21 +03:00
|
|
|
/*
|
2005-11-05 22:57:48 +03: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.
|
2005-03-14 23:57:21 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2005-03-14 23:57:21 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ORTE_PLS_TM_EXPORT_H
|
|
|
|
#define ORTE_PLS_TM_EXPORT_H
|
|
|
|
|
|
|
|
#include "orte_config.h"
|
|
|
|
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "opal/mca/mca.h"
|
|
|
|
#include "orte/mca/pls/pls.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-08-19 20:49:59 +04:00
|
|
|
struct orte_pls_tm_component_t {
|
|
|
|
orte_pls_base_component_t super;
|
|
|
|
int priority;
|
|
|
|
int debug;
|
2005-10-04 23:38:51 +04:00
|
|
|
bool want_path_check;
|
2005-08-19 20:49:59 +04:00
|
|
|
char *orted;
|
2005-10-04 23:38:51 +04:00
|
|
|
char **checked_paths;
|
2005-08-19 20:49:59 +04:00
|
|
|
};
|
|
|
|
typedef struct orte_pls_tm_component_t orte_pls_tm_component_t;
|
2005-03-18 06:43:59 +03:00
|
|
|
|
2005-08-19 20:49:59 +04:00
|
|
|
/* Globally exported variables */
|
|
|
|
OMPI_COMP_EXPORT extern orte_pls_tm_component_t mca_pls_tm_component;
|
|
|
|
extern orte_pls_base_module_1_0_0_t orte_pls_tm_module;
|
2005-03-18 06:43:59 +03:00
|
|
|
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* ORTE_PLS_TM_EXPORT_H */
|