root/ompi/mca/fbtl/posix/fbtl_posix_component.c

/* [<][>][^][v][top][bottom][index][help] */
   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-2005 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-2018 University of Houston. All rights reserved.
  14  * Copyright (c) 2015      Los Alamos National Security, LLC. All rights
  15  *                         reserved.
  16  * $COPYRIGHT$
  17  *
  18  * Additional copyrights may follow
  19  *
  20  * $HEADER$
  21  *
  22  * These symbols are in a file by themselves to provide nice linker
  23  * semantics.  Since linkers generally pull in symbols by object
  24  * files, keeping these symbols as the only symbols in this file
  25  * prevents utility programs such as "ompi_info" from having to import
  26  * entire components just to query their version and parameters.
  27  */
  28 
  29 #include "ompi_config.h"
  30 #include "fbtl_posix.h"
  31 #include "mpi.h"
  32 
  33 /*
  34  * Public string showing the fbtl posix component version number
  35  */
  36 const char *mca_fbtl_posix_component_version_string =
  37   "OMPI/MPI posix FBTL MCA component version " OMPI_VERSION;
  38 
  39 int mca_fbtl_posix_priority = 10;
  40 
  41 /*
  42  * Instantiate the public struct with all of our public information
  43  * and pointers to our public functions in it
  44  */
  45 mca_fbtl_base_component_2_0_0_t mca_fbtl_posix_component = {
  46 
  47     /* First, the mca_component_t struct containing meta information
  48        about the component itself */
  49 
  50     .fbtlm_version = {
  51         MCA_FBTL_BASE_VERSION_2_0_0,
  52 
  53         /* Component name and version */
  54         .mca_component_name = "posix",
  55         MCA_BASE_MAKE_VERSION(component, OMPI_MAJOR_VERSION, OMPI_MINOR_VERSION,
  56                               OMPI_RELEASE_VERSION),
  57     },
  58     .fbtlm_data = {
  59         /* This component is checkpointable */
  60       MCA_BASE_METADATA_PARAM_CHECKPOINT
  61     },
  62     .fbtlm_init_query = mca_fbtl_posix_component_init_query,      /* get thread level */
  63     .fbtlm_file_query = mca_fbtl_posix_component_file_query,      /* get priority and actions */
  64     .fbtlm_file_unquery = mca_fbtl_posix_component_file_unquery,  /* undo what was done by previous function */
  65 };

/* [<][>][^][v][top][bottom][index][help] */