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-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-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 const opal_backtrace_base_component_2_0_0_t mca_backtrace_printstack_component = {
27 /* First, the mca_component_t struct containing meta information
28 about the component itself */
29 .backtracec_version = {
30 OPAL_BACKTRACE_BASE_VERSION_2_0_0,
31
32 /* Component name and version */
33 .mca_component_name = "printstack",
34 MCA_BASE_MAKE_VERSION(component, OPAL_MAJOR_VERSION, OPAL_MINOR_VERSION,
35 OPAL_RELEASE_VERSION),
36 },
37 .backtracec_data = {
38 /* The component is checkpoint ready */
39 MCA_BASE_METADATA_PARAM_CHECKPOINT
40 },
41 };