root/opal/mca/pmix/pmix4x/pmix/src/mca/pinstalldirs/config/pmix_pinstalldirs_config.c

/* [<][>][^][v][top][bottom][index][help] */
   1 /*
   2  * Copyright (c) 2006-2007 Los Alamos National Security, LLC.  All rights
   3  *                         reserved.
   4  * Copyright (c) 2016      Intel, Inc. All rights reserved
   5  * $COPYRIGHT$
   6  *
   7  * Additional copyrights may follow
   8  *
   9  * $HEADER$
  10  */
  11 
  12 #include <src/include/pmix_config.h>
  13 
  14 #include "src/mca/pinstalldirs/pinstalldirs.h"
  15 #include "src/mca/pinstalldirs/config/pinstall_dirs.h"
  16 
  17 const pmix_pinstalldirs_base_component_t mca_pinstalldirs_config_component = {
  18     /* First, the mca_component_t struct containing meta information
  19        about the component itself */
  20     {
  21         PMIX_PINSTALLDIRS_BASE_VERSION_1_0_0,
  22 
  23         /* Component name and version */
  24         "config",
  25         PMIX_MAJOR_VERSION,
  26         PMIX_MINOR_VERSION,
  27         PMIX_RELEASE_VERSION,
  28 
  29         /* Component open and close functions */
  30         NULL,
  31         NULL
  32     },
  33     {
  34         /* This component is Checkpointable */
  35         PMIX_MCA_BASE_METADATA_PARAM_CHECKPOINT
  36     },
  37 
  38     {
  39         PMIX_INSTALL_PREFIX,
  40         PMIX_EXEC_PREFIX,
  41         PMIX_BINDIR,
  42         PMIX_SBINDIR,
  43         PMIX_LIBEXECDIR,
  44         PMIX_DATAROOTDIR,
  45         PMIX_DATADIR,
  46         PMIX_SYSCONFDIR,
  47         PMIX_SHAREDSTATEDIR,
  48         PMIX_LOCALSTATEDIR,
  49         PMIX_LIBDIR,
  50         PMIX_INCLUDEDIR,
  51         PMIX_INFODIR,
  52         PMIX_MANDIR,
  53         PMIX_PKGDATADIR,
  54         PMIX_PKGLIBDIR,
  55         PMIX_PKGINCLUDEDIR
  56     }
  57 };

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