102 строки
2.7 KiB
C
102 строки
2.7 KiB
C
|
/*
|
||
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
||
|
* All rights reserved.
|
||
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
||
|
* All rights reserved.
|
||
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
||
|
* University of Stuttgart. All rights reserved.
|
||
|
* $COPYRIGHT$
|
||
|
*
|
||
|
* Additional copyrights may follow
|
||
|
*
|
||
|
* $HEADER$
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include "ompi_config.h"
|
||
|
|
||
|
#include "mca/mca.h"
|
||
|
#include "mca/base/base.h"
|
||
|
|
||
|
#include "mca/errmgr/base/base.h"
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Function for selecting one component from all those that are
|
||
|
* available.
|
||
|
*/
|
||
|
int mca_errmgr_base_select(bool *allow_multi_user_threads,
|
||
|
bool *have_hidden_threads)
|
||
|
{
|
||
|
ompi_list_item_t *item;
|
||
|
mca_base_component_list_item_t *cli;
|
||
|
mca_errmgr_base_component_t *component, *best_component = NULL;
|
||
|
mca_errmgr_base_module_t *module, *best_module = NULL;
|
||
|
bool multi, hidden;
|
||
|
int priority, best_priority = -1;
|
||
|
|
||
|
/* Iterate through all the available components */
|
||
|
|
||
|
for (item = ompi_list_get_first(&mca_errmgr_base_components_available);
|
||
|
item != ompi_list_get_end(&mca_errmgr_base_components_available);
|
||
|
item = ompi_list_get_next(item)) {
|
||
|
cli = (mca_base_component_list_item_t *) item;
|
||
|
component = (mca_errmgr_base_component_t *) cli->cli_component;
|
||
|
|
||
|
/* Call the component's init function and see if it wants to be
|
||
|
selected */
|
||
|
|
||
|
module = component->errmgr_init(&multi, &hidden, &priority);
|
||
|
|
||
|
/* If we got a non-NULL module back, then the component wants to
|
||
|
be selected. So save its multi/hidden values and save the
|
||
|
module with the highest priority */
|
||
|
|
||
|
if (NULL != module) {
|
||
|
/* If this is the best one, save it */
|
||
|
|
||
|
if (priority > best_priority) {
|
||
|
|
||
|
/* If there was a previous best one, finalize */
|
||
|
|
||
|
if (NULL != best_component) {
|
||
|
best_component->errmgr_finalize();
|
||
|
}
|
||
|
|
||
|
/* Save the new best one */
|
||
|
|
||
|
best_module = module;
|
||
|
best_component = component;
|
||
|
*allow_multi_user_threads = multi;
|
||
|
*have_hidden_threads = hidden;
|
||
|
|
||
|
/* update the best priority */
|
||
|
best_priority = priority;
|
||
|
}
|
||
|
|
||
|
/* If it's not the best one, finalize it */
|
||
|
|
||
|
else {
|
||
|
component->errmgr_finalize();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* If we didn't find one to select, that's okay - stick with default */
|
||
|
|
||
|
if (NULL == best_component) {
|
||
|
return OMPI_SUCCESS;
|
||
|
}
|
||
|
|
||
|
/* We have happiness -- save the component and module for later
|
||
|
usage */
|
||
|
|
||
|
orte_errmgr = *best_module;
|
||
|
mca_errmgr_base_selected_component = *best_component;
|
||
|
mca_errmgr_base_selected = true;
|
||
|
|
||
|
/* all done */
|
||
|
|
||
|
return OMPI_SUCCESS;
|
||
|
}
|