1
1
openmpi/orte/mca/errmgr/hnp/errmgr_hnp_component.c
Shiqing Fan eea712f9ab - Export those components in correct way.
This commit was SVN r15804.
2007-08-08 16:20:17 +00:00

176 строки
4.2 KiB
C

/* -*- C -*-
*
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
* 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.
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
/** @file:
*
* The Open MPI General Purpose Registry - Proxy component
*
*/
/*
* includes
*/
#include "orte_config.h"
#include "orte/orte_constants.h"
#include "orte/orte_types.h"
#include "opal/util/output.h"
#include "opal/mca/mca.h"
#include "opal/mca/base/base.h"
#include "opal/mca/base/mca_base_param.h"
#include "orte/util/proc_info.h"
#include "orte/mca/ns/ns_types.h"
#include "orte/mca/errmgr/errmgr.h"
#include "orte/mca/errmgr/base/errmgr_private.h"
#include "errmgr_hnp.h"
/*
* Struct of function pointers that need to be initialized
*/
mca_errmgr_base_component_t mca_errmgr_hnp_component = {
{
ORTE_ERRMGR_BASE_VERSION_1_3_0,
"hnp", /* MCA module name */
ORTE_MAJOR_VERSION, /* MCA module major version */
ORTE_MINOR_VERSION, /* MCA module minor version */
ORTE_RELEASE_VERSION, /* MCA module release version */
orte_errmgr_hnp_open, /* module open */
orte_errmgr_hnp_close /* module close */
},
{
/* The component is checkpoint ready */
MCA_BASE_METADATA_PARAM_CHECKPOINT
},
orte_errmgr_hnp_component_init, /* module init */
orte_errmgr_hnp_finalize /* module shutdown */
};
/*
* setup the function pointers for the module
*/
static orte_errmgr_base_module_t orte_errmgr_hnp = {
orte_errmgr_base_log,
orte_errmgr_hnp_proc_aborted,
orte_errmgr_hnp_incomplete_start,
orte_errmgr_hnp_error_detected,
orte_errmgr_hnp_register_job,
orte_errmgr_hnp_abort,
orte_errmgr_hnp_abort_procs_request
};
/*
* Whether or not we allowed this component to be selected
*/
static bool initialized = false;
/* local globals */
orte_errmgr_hnp_globals_t orte_errmgr_hnp_globals;
/*
* Open the component
*/
int orte_errmgr_hnp_open(void)
{
int id, tmp;
id = mca_base_param_register_int("errmgr", "hnp", "debug", NULL, 0);
mca_base_param_lookup_int(id, &tmp);
if (tmp) {
orte_errmgr_hnp_globals.debug = true;
} else {
orte_errmgr_hnp_globals.debug = false;
}
return ORTE_SUCCESS;
}
/*
* Close the component
*/
int orte_errmgr_hnp_close(void)
{
return ORTE_SUCCESS;
}
orte_errmgr_base_module_t*
orte_errmgr_hnp_component_init(bool *allow_multi_user_threads, bool *have_hidden_threads,
int *priority)
{
int rc;
if (orte_errmgr_hnp_globals.debug) {
opal_output(0, "errmgr_hnp_init called");
}
/* If we are not an HNP, then don't pick us! */
if (!orte_process_info.seed) {
/* don't take me! */
return NULL;
}
/* Return a module (choose an arbitrary, positive priority --
it's only relevant compared to other components). */
*priority = 10;
/* no part of OpenRTE allows or has threads */
*allow_multi_user_threads = false;
*have_hidden_threads = false;
/* start the receive function */
if (ORTE_SUCCESS != (rc = orte_errmgr_base_comm_start())) {
ORTE_ERROR_LOG(rc);
return NULL;
}
initialized = true;
return &orte_errmgr_hnp;
}
/*
* finalize routine
*/
int orte_errmgr_hnp_finalize(void)
{
int rc;
if (orte_errmgr_hnp_globals.debug) {
opal_output(0, "%s errmgr_hnp_finalize called",
ORTE_NAME_PRINT(orte_process_info.my_name));
}
/* stop the receive function */
if (ORTE_SUCCESS != (rc = orte_errmgr_base_comm_stop())) {
ORTE_ERROR_LOG(rc);
}
initialized = false;
/* All done */
return ORTE_SUCCESS;
}