2005-01-21 20:49:14 +03:00
|
|
|
/*
|
2010-03-24 00:28:02 +03:00
|
|
|
* Copyright (c) 2004-2010 The Trustees of Indiana University and Indiana
|
2005-11-05 22:57:48 +03:00
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2005-01-21 20:49:14 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2010-04-23 08:44:41 +04:00
|
|
|
* Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
2013-03-28 01:14:43 +04:00
|
|
|
* Copyright (c) 2012-2013 Los Alamos National Security, Inc. All rights reserved.
|
2005-01-21 20:49:14 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
#include "orte_config.h"
|
2010-03-24 00:28:02 +03:00
|
|
|
#include "orte/constants.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
2005-01-21 20:49:14 +03:00
|
|
|
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "opal/mca/mca.h"
|
|
|
|
#include "opal/mca/base/base.h"
|
2010-03-24 00:28:02 +03:00
|
|
|
#include "opal/util/output.h"
|
2005-01-21 20:49:14 +03:00
|
|
|
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "orte/mca/errmgr/base/base.h"
|
2008-05-06 22:08:45 +04:00
|
|
|
#include "orte/mca/errmgr/base/errmgr_private.h"
|
2005-01-21 20:49:14 +03:00
|
|
|
|
2006-09-15 01:29:51 +04:00
|
|
|
int orte_errmgr_base_select(void)
|
2005-01-21 20:49:14 +03:00
|
|
|
{
|
2010-03-24 00:28:02 +03:00
|
|
|
int exit_status = OPAL_SUCCESS;
|
2010-08-19 17:09:20 +04:00
|
|
|
orte_errmgr_base_component_t *best_component = NULL;
|
|
|
|
orte_errmgr_base_module_t *best_module = NULL;
|
2010-03-24 00:28:02 +03:00
|
|
|
|
|
|
|
/*
|
2010-08-19 17:09:20 +04:00
|
|
|
* Select the best component
|
2010-03-24 00:28:02 +03:00
|
|
|
*/
|
2013-03-28 01:14:43 +04:00
|
|
|
if( OPAL_SUCCESS != mca_base_select("errmgr", orte_errmgr_base_framework.framework_output,
|
|
|
|
&orte_errmgr_base_framework.framework_components,
|
2010-08-19 17:09:20 +04:00
|
|
|
(mca_base_module_t **) &best_module,
|
|
|
|
(mca_base_component_t **) &best_component) ) {
|
|
|
|
/* This will only happen if no component was selected */
|
|
|
|
exit_status = ORTE_ERROR;
|
|
|
|
goto cleanup;
|
2010-03-24 00:28:02 +03:00
|
|
|
}
|
2008-05-06 22:08:45 +04:00
|
|
|
|
2010-08-19 17:09:20 +04:00
|
|
|
/* Save the winner */
|
|
|
|
orte_errmgr = *best_module;
|
2010-03-24 00:28:02 +03:00
|
|
|
|
2010-08-19 17:09:20 +04:00
|
|
|
/* Initialize the winner */
|
|
|
|
if (NULL != best_module) {
|
|
|
|
if (OPAL_SUCCESS != orte_errmgr.init()) {
|
|
|
|
exit_status = OPAL_ERROR;
|
|
|
|
goto cleanup;
|
2010-03-24 00:28:02 +03:00
|
|
|
}
|
|
|
|
}
|
2005-01-21 20:49:14 +03:00
|
|
|
|
2010-08-19 17:09:20 +04:00
|
|
|
cleanup:
|
2010-03-24 00:28:02 +03:00
|
|
|
return exit_status;
|
2005-01-21 20:49:14 +03:00
|
|
|
}
|