2004-01-12 00:31:52 +03:00
|
|
|
/*
|
2004-11-22 04:38:40 +03: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 23:09:25 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
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-10-22 20:06:05 +04:00
|
|
|
OMPI_DECLSPEC int mca_pml_base_open(void);
|
2005-01-13 18:30:49 +03:00
|
|
|
OMPI_DECLSPEC int mca_pml_base_progress(void);
|
2004-10-22 20:06:05 +04:00
|
|
|
OMPI_DECLSPEC 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-10-22 20:06:05 +04:00
|
|
|
OMPI_DECLSPEC int mca_pml_base_close(void);
|
2004-01-12 00:31:52 +03:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2004-01-30 06:54:52 +03:00
|
|
|
* Globals
|
2004-01-12 00:31:52 +03:00
|
|
|
*/
|
2004-10-22 20:06:05 +04:00
|
|
|
OMPI_DECLSPEC extern int mca_pml_base_output;
|
|
|
|
OMPI_DECLSPEC extern ompi_list_t mca_pml_base_components_available;
|
|
|
|
OMPI_DECLSPEC extern mca_pml_base_component_t mca_pml_base_selected_component;
|
|
|
|
OMPI_DECLSPEC 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 */
|