2004-01-11 21:31:52 +00:00
|
|
|
/*
|
2005-11-05 19:57:48 +00: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.
|
2004-11-28 20:09:25 +00:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-01-11 21:31:52 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MCA_PML_BASE_H
|
|
|
|
#define MCA_PML_BASE_H
|
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
#include "ompi_config.h"
|
2004-01-11 21:31:52 +00:00
|
|
|
|
2006-02-12 01:33:29 +00:00
|
|
|
#include "opal/mca/mca.h"
|
|
|
|
#include "ompi/mca/pml/pml.h"
|
2004-01-11 21:31:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Global functions for the PML
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2004-10-22 16:06:05 +00:00
|
|
|
OMPI_DECLSPEC int mca_pml_base_open(void);
|
2005-01-13 15:30:49 +00:00
|
|
|
OMPI_DECLSPEC int mca_pml_base_progress(void);
|
2005-03-27 13:05:23 +00:00
|
|
|
OMPI_DECLSPEC int mca_pml_base_select(bool enable_progress_threads,
|
|
|
|
bool enable_mpi_threads);
|
2004-10-22 16:06:05 +00:00
|
|
|
OMPI_DECLSPEC int mca_pml_base_close(void);
|
2004-01-11 21:31:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2004-01-30 03:54:52 +00:00
|
|
|
* Globals
|
2004-01-11 21:31:52 +00:00
|
|
|
*/
|
2004-10-22 16:06:05 +00:00
|
|
|
OMPI_DECLSPEC extern int mca_pml_base_output;
|
2005-07-03 16:22:16 +00:00
|
|
|
OMPI_DECLSPEC extern opal_list_t mca_pml_base_components_available;
|
2004-10-22 16:06:05 +00:00
|
|
|
OMPI_DECLSPEC extern mca_pml_base_component_t mca_pml_base_selected_component;
|
|
|
|
OMPI_DECLSPEC extern mca_pml_base_module_t mca_pml;
|
2005-06-20 16:40:12 +00:00
|
|
|
OMPI_DECLSPEC extern char* mca_pml_base_pml;
|
2004-01-11 21:31:52 +00:00
|
|
|
|
2004-10-20 22:31:03 +00:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
2004-01-11 21:31:52 +00:00
|
|
|
#endif /* MCA_PML_BASE_H */
|