2006-08-24 21:51:20 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2008-05-06 22:08:45 +04:00
|
|
|
* Copyright (c) 2004-2008 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
2006-08-24 21:51:20 +04:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2006-09-15 02:22:34 +04:00
|
|
|
#ifndef ORTE_ODLS_PROCESS_EXPORT_H
|
|
|
|
#define ORTE_ODLS_PROCESS_EXPORT_H
|
2006-08-24 21:51:20 +04:00
|
|
|
|
|
|
|
#include "orte_config.h"
|
|
|
|
|
|
|
|
#include "opal/mca/mca.h"
|
2006-10-20 06:25:50 +04:00
|
|
|
|
2006-09-15 02:22:34 +04:00
|
|
|
#include "orte/mca/odls/odls.h"
|
2006-08-24 21:51:20 +04:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
BEGIN_C_DECLS
|
2006-08-24 21:51:20 +04:00
|
|
|
/*
|
|
|
|
* Module open / close
|
|
|
|
*/
|
2006-09-15 02:22:34 +04:00
|
|
|
int orte_odls_process_component_open(void);
|
|
|
|
int orte_odls_process_component_close(void);
|
2008-05-06 22:08:45 +04:00
|
|
|
int orte_odls_process_component_query(mca_base_module_t **module, int *priority);
|
2006-08-24 21:51:20 +04:00
|
|
|
|
2006-10-06 11:04:43 +04:00
|
|
|
/*
|
|
|
|
* ODLS Process module
|
|
|
|
*/
|
2006-09-15 02:22:34 +04:00
|
|
|
extern orte_odls_base_module_t orte_odls_process_module;
|
2006-10-06 11:24:34 +04:00
|
|
|
ORTE_MODULE_DECLSPEC extern orte_odls_base_component_t mca_odls_process_component;
|
2006-08-24 21:51:20 +04:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
END_C_DECLS
|
|
|
|
|
2006-09-15 02:22:34 +04:00
|
|
|
#endif /* ORTE_ODLS_PROCESS_EXPORT_H */
|