root/opal/mca/backtrace/none/backtrace_none_component.c

/* [<][>][^][v][top][bottom][index][help] */
   1 /* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
   2 /*
   3  * Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
   4  *                         University Research and Technology
   5  *                         Corporation.  All rights reserved.
   6  * Copyright (c) 2004-2006 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-2006 The Regents of the University of California.
  12  *                         All rights reserved.
  13  * Copyright (c) 2015      Los Alamos National Security, LLC. All rights
  14  *                         reserved.
  15  * $COPYRIGHT$
  16  *
  17  * Additional copyrights may follow
  18  *
  19  * $HEADER$
  20  */
  21 
  22 #include "opal_config.h"
  23 
  24 #include "opal/mca/backtrace/backtrace.h"
  25 
  26 BEGIN_C_DECLS
  27     OPAL_DECLSPEC extern const opal_backtrace_base_component_2_0_0_t mca_backtrace_none_component;
  28 END_C_DECLS
  29 
  30 const opal_backtrace_base_component_2_0_0_t mca_backtrace_none_component = {
  31     /* First, the mca_component_t struct containing meta information
  32        about the component itself */
  33     .backtracec_version = {
  34         OPAL_BACKTRACE_BASE_VERSION_2_0_0,
  35 
  36         /* Component name and version */
  37         .mca_component_name = "none",
  38         MCA_BASE_MAKE_VERSION(component, OPAL_MAJOR_VERSION, OPAL_MINOR_VERSION,
  39                               OPAL_RELEASE_VERSION),
  40     },
  41     .backtracec_data = {
  42         /* The component is checkpoint ready */
  43         MCA_BASE_METADATA_PARAM_CHECKPOINT
  44     },
  45 };

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