2015-10-19 10:39:35 -06:00
|
|
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
2006-07-04 01:20:20 +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.
|
2015-06-23 20:59:57 -07:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2006-07-04 01:20:20 +00:00
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2006 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2015-10-19 10:39:35 -06:00
|
|
|
* Copyright (c) 2015 Los Alamos National Security, LLC. All rights
|
|
|
|
* reserved.
|
2006-07-04 01:20:20 +00:00
|
|
|
* $COPYRIGHT$
|
2015-06-23 20:59:57 -07:00
|
|
|
*
|
2006-07-04 01:20:20 +00:00
|
|
|
* Additional copyrights may follow
|
2015-06-23 20:59:57 -07:00
|
|
|
*
|
2006-07-04 01:20:20 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MCA_MTL_BASE_H
|
|
|
|
#define MCA_MTL_BASE_H
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
2015-03-05 20:50:44 -07:00
|
|
|
#include "ompi/mca/mca.h"
|
2006-07-04 01:20:20 +00:00
|
|
|
#include "ompi/mca/mtl/mtl.h"
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Global functions for the MTL
|
|
|
|
*/
|
|
|
|
|
2009-08-20 11:42:18 +00:00
|
|
|
BEGIN_C_DECLS
|
2006-07-04 01:20:20 +00:00
|
|
|
|
2007-02-28 20:26:34 +00:00
|
|
|
OMPI_DECLSPEC extern mca_mtl_base_component_t* ompi_mtl_base_selected_component;
|
2015-06-23 20:59:57 -07:00
|
|
|
|
2006-07-04 01:20:20 +00:00
|
|
|
OMPI_DECLSPEC int ompi_mtl_base_select(bool enable_progress_threads,
|
2015-10-19 10:39:35 -06:00
|
|
|
bool enable_mpi_threads,
|
|
|
|
int *priority);
|
2006-07-04 01:20:20 +00:00
|
|
|
|
2013-03-27 21:17:31 +00:00
|
|
|
OMPI_DECLSPEC extern mca_base_framework_t ompi_mtl_base_framework;
|
2006-07-04 01:20:20 +00:00
|
|
|
|
2009-08-20 11:42:18 +00:00
|
|
|
END_C_DECLS
|
2006-07-04 01:20:20 +00:00
|
|
|
#endif /* MCA_MTL_BASE_H */
|