/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */ /* * Copyright (c) 2010 The Trustees of Indiana University. * All rights reserved. * Copyright (c) 2015 Los Alamos National Security, LLC. All rights * reserved. * $COPYRIGHT$ * * Additional copyrights may follow * * $HEADER$ */ #include "orte_config.h" #include #include "orte/constants.h" #include "orte/mca/mca.h" #include "opal/util/output.h" #include "opal/mca/base/base.h" #include "orte/mca/sstore/sstore.h" #include "orte/mca/sstore/base/base.h" int orte_sstore_base_select(void) { int exit_status = OPAL_SUCCESS; orte_sstore_base_component_t *best_component = NULL; orte_sstore_base_module_t *best_module = NULL; /* * Select the best component */ if( OPAL_SUCCESS != mca_base_select("sstore", orte_sstore_base_framework.framework_output, &orte_sstore_base_framework.framework_components, (mca_base_module_t **) &best_module, (mca_base_component_t **) &best_component, NULL) ) { /* This will only happen if no component was selected */ exit_status = ORTE_ERROR; goto cleanup; } /* Save the winner */ orte_sstore = *best_module; /* Initialize the winner */ if (NULL != best_module) { if (OPAL_SUCCESS != orte_sstore.sstore_init()) { exit_status = OPAL_ERROR; goto cleanup; } } cleanup: return exit_status; }