root/opal/mca/timer/solaris/timer_solaris_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-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) 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/timer/timer.h"
  25 #include "opal/mca/timer/solaris/timer_solaris.h"
  26 
  27 
  28 const opal_timer_base_component_2_0_0_t mca_timer_solaris_component = {
  29     /* First, the mca_component_t struct containing meta information
  30        about the component itself */
  31     .timerc_version = {
  32         OPAL_TIMER_BASE_VERSION_2_0_0,
  33 
  34         /* Component name and version */
  35         .mca_component_name = "solaris",
  36         MCA_BASE_MAKE_VERSION(component, OPAL_MAJOR_VERSION, OPAL_MINOR_VERSION,
  37                               OPAL_RELEASE_VERSION),
  38     },
  39     .timerc_data = {
  40         /* The component is checkpoint ready */
  41         MCA_BASE_METADATA_PARAM_CHECKPOINT
  42     },
  43 };

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