2016-02-23 09:58:32 -07:00
|
|
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
2004-01-25 22:07:54 +00:00
|
|
|
/*
|
2007-03-16 23:11:45 +00:00
|
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
2005-11-05 19:57:48 +00:00
|
|
|
* 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-2006 High Performance Computing Center Stuttgart,
|
2004-11-28 20:09:25 +00:00
|
|
|
* 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.
|
2012-06-27 01:28:28 +00:00
|
|
|
* Copyright (c) 2010 Oak Ridge National Labs. All rights reserved.
|
2015-09-09 16:30:26 +09:00
|
|
|
* Copyright (c) 2015 Research Organization for Information Science
|
|
|
|
* and Technology (RIST). All rights reserved.
|
2015-10-11 07:31:47 -05:00
|
|
|
* Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
|
2016-02-23 09:58:32 -07:00
|
|
|
* Copyright (c) 2016 Los Alamos National Security, LLC. All rights
|
|
|
|
* reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
* $COPYRIGHT$
|
2015-06-23 20:59:57 -07:00
|
|
|
*
|
2004-11-22 01:38:40 +00:00
|
|
|
* Additional copyrights may follow
|
2015-06-23 20:59:57 -07:00
|
|
|
*
|
2004-01-25 22:07:54 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
#include "ompi_config.h"
|
2004-01-25 22:07:54 +00:00
|
|
|
|
2013-02-12 21:10:11 +00:00
|
|
|
#include "opal/util/show_help.h"
|
2006-02-12 01:33:29 +00:00
|
|
|
#include "ompi/mpi/c/bindings.h"
|
2009-04-29 01:32:14 +00:00
|
|
|
#include "ompi/runtime/params.h"
|
|
|
|
#include "ompi/communicator/communicator.h"
|
|
|
|
#include "ompi/errhandler/errhandler.h"
|
2006-02-12 01:33:29 +00:00
|
|
|
#include "ompi/constants.h"
|
2004-01-25 22:07:54 +00:00
|
|
|
|
2015-08-31 09:36:02 +09:00
|
|
|
#if OMPI_BUILD_MPI_PROFILING
|
|
|
|
#if OPAL_HAVE_WEAK_SYMBOLS
|
2004-01-25 22:07:54 +00:00
|
|
|
#pragma weak MPI_Init_thread = PMPI_Init_thread
|
|
|
|
#endif
|
2015-09-09 16:30:26 +09:00
|
|
|
#define MPI_Init_thread PMPI_Init_thread
|
2004-04-20 18:50:43 +00:00
|
|
|
#endif
|
|
|
|
|
2004-07-30 02:58:53 +00:00
|
|
|
static const char FUNC_NAME[] = "MPI_Init_thread";
|
2004-06-23 01:32:03 +00:00
|
|
|
|
|
|
|
|
2004-01-25 22:07:54 +00:00
|
|
|
int MPI_Init_thread(int *argc, char ***argv, int required,
|
2015-06-23 20:59:57 -07:00
|
|
|
int *provided)
|
2004-06-23 01:32:03 +00:00
|
|
|
{
|
2005-09-15 15:44:12 +00:00
|
|
|
int err;
|
|
|
|
|
2007-01-29 21:56:15 +00:00
|
|
|
if ( MPI_PARAM_CHECK ) {
|
|
|
|
if (required < MPI_THREAD_SINGLE || required > MPI_THREAD_MULTIPLE) {
|
|
|
|
ompi_mpi_errors_are_fatal_comm_handler(NULL, NULL, FUNC_NAME);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-23 09:58:32 -07:00
|
|
|
*provided = required;
|
2005-09-15 15:44:12 +00:00
|
|
|
|
|
|
|
/* Call the back-end initialization function (we need to put as
|
|
|
|
little in this function as possible so that if it's profiled, we
|
|
|
|
don't lose anything) */
|
|
|
|
|
|
|
|
if (NULL != argc && NULL != argv) {
|
|
|
|
err = ompi_mpi_init(*argc, *argv, required, provided);
|
|
|
|
} else {
|
|
|
|
err = ompi_mpi_init(0, NULL, required, provided);
|
|
|
|
}
|
2007-07-29 11:47:19 +00:00
|
|
|
|
|
|
|
/* Since we don't have a communicator to invoke an errorhandler on
|
|
|
|
here, don't use the fancy-schmancy ERRHANDLER macros; they're
|
|
|
|
really designed for real communicator objects. Just use the
|
|
|
|
back-end function directly. */
|
|
|
|
|
|
|
|
if (MPI_SUCCESS != err) {
|
|
|
|
return ompi_errhandler_invoke(NULL, NULL, OMPI_ERRHANDLER_TYPE_COMM,
|
|
|
|
err < 0 ? ompi_errcode_get_mpi_code(err) :
|
|
|
|
err, FUNC_NAME);
|
|
|
|
}
|
2011-01-03 18:16:53 +00:00
|
|
|
|
|
|
|
OPAL_CR_INIT_LIBRARY();
|
|
|
|
|
2007-07-29 11:47:19 +00:00
|
|
|
return MPI_SUCCESS;
|
2004-01-25 22:07:54 +00:00
|
|
|
}
|