2004-01-12 00:31:52 +03:00
|
|
|
/*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MCA_PML_BASE_H
|
|
|
|
#define MCA_PML_BASE_H
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#include "ompi_config.h"
|
2004-01-12 00:31:52 +03:00
|
|
|
|
|
|
|
#include "mca/mca.h"
|
2004-03-17 21:45:16 +03:00
|
|
|
#include "mca/pml/pml.h"
|
2004-01-12 00:31:52 +03:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Global functions for the PML
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2004-01-30 06:54:52 +03:00
|
|
|
int mca_pml_base_open(void);
|
2004-08-02 04:24:22 +04:00
|
|
|
int mca_pml_base_select(mca_pml_base_module_t *selected,
|
2004-02-01 00:45:32 +03:00
|
|
|
bool *allow_multi_user_threads,
|
|
|
|
bool *have_hidden_threads);
|
2004-01-12 00:31:52 +03:00
|
|
|
int mca_pml_base_close(void);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2004-01-30 06:54:52 +03:00
|
|
|
* Globals
|
2004-01-12 00:31:52 +03:00
|
|
|
*/
|
2004-01-30 06:54:52 +03:00
|
|
|
extern int mca_pml_base_output;
|
2004-08-02 04:24:22 +04:00
|
|
|
extern ompi_list_t mca_pml_base_components_available;
|
|
|
|
extern mca_pml_base_component_t mca_pml_base_selected_component;
|
|
|
|
extern mca_pml_base_module_t mca_pml;
|
2004-01-12 00:31:52 +03:00
|
|
|
|
2004-10-21 02:31:03 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
2004-01-12 00:31:52 +03:00
|
|
|
#endif /* MCA_PML_BASE_H */
|