1 /* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */ 2 /* 3 * Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana 4 * University Research and Technology 5 * Corporation. All rights reserved. 6 * Copyright (c) 2004-2011 The University of Tennessee and The University 7 * of Tennessee Research Foundation. All rights 8 * reserved. 9 * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, 10 * University of Stuttgart. All rights reserved. 11 * Copyright (c) 2004-2005 The Regents of the University of California. 12 * All rights reserved. 13 * Copyright (c) 2008-2011 University of Houston. All rights reserved. 14 * Copyright (c) 2015 Los Alamos National Security, LLC. All rights 15 * reserved. 16 * Copyright (c) 2015 Research Organization for Information Science 17 * and Technology (RIST). All rights reserved. 18 * $COPYRIGHT$ 19 * 20 * Additional copyrights may follow 21 * 22 * $HEADER$ 23 */ 24 25 26 #include "ompi_config.h" 27 #include <stdio.h> 28 29 #include "ompi/mca/mca.h" 30 #include "opal/mca/base/base.h" 31 32 #include "ompi/mca/fbtl/fbtl.h" 33 #include "ompi/mca/fbtl/base/base.h" 34 35 /* 36 * The following file was created by configure. It contains extern 37 * statements and the definition of an array of pointers to each 38 * component's public mca_base_component_t struct. 39 */ 40 #include "ompi/mca/fbtl/base/static-components.h" 41 42 /* 43 * Global variables; most of which are loaded by back-ends of MCA 44 * variables 45 */ 46 mca_fbtl_base_component_t mca_fbtl_base_selected_component = {{0}}; 47 mca_fbtl_base_module_t mca_fbtl = {0}; 48 49 MCA_BASE_FRAMEWORK_DECLARE(ompi, fbtl, NULL, NULL, NULL, NULL, 50 mca_fbtl_base_static_components, 0);