1
1
openmpi/orte/mca/errmgr/bproc/errmgr_bproc_component.c
Josh Hursey dadca7da88 Merging in the jjhursey-ft-cr-stable branch (r13912 : HEAD).
This merge adds Checkpoint/Restart support to Open MPI. The initial
frameworks and components support a LAM/MPI-like implementation.

This commit follows the risk assessment presented to the Open MPI core
development group on Feb. 22, 2007.

This commit closes trac:158

More details to follow.

This commit was SVN r14051.

The following SVN revisions from the original message are invalid or
inconsistent and therefore were not cross-referenced:
  r13912

The following Trac tickets were found above:
  Ticket 158 --> https://svn.open-mpi.org/trac/ompi/ticket/158
2007-03-16 23:11:45 +00:00

166 строки
4.1 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_bproc.h"
/*
* Struct of function pointers that need to be initialized
*/
mca_errmgr_base_component_t mca_errmgr_bproc_component = {
{
ORTE_ERRMGR_BASE_VERSION_1_3_0,
"bproc", /* 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_bproc_open, /* module open */
orte_errmgr_bproc_close /* module close */
},
{
/* The component is checkpoint ready */
MCA_BASE_METADATA_PARAM_CHECKPOINT
},
orte_errmgr_bproc_component_init, /* module init */
orte_errmgr_bproc_finalize /* module shutdown */
};
/*
* setup the function pointers for the module
*/
static orte_errmgr_base_module_t orte_errmgr_bproc = {
orte_errmgr_base_log,
orte_errmgr_bproc_proc_aborted,
orte_errmgr_bproc_incomplete_start,
orte_errmgr_bproc_error_detected,
orte_errmgr_bproc_register_job,
orte_errmgr_bproc_abort,
orte_errmgr_bproc_abort_procs_request
};
/*
* Whether or not we allowed this component to be selected
*/
static bool initialized = false;
/* local globals */
orte_errmgr_bproc_globals_t orte_errmgr_bproc_globals;
/*
* Open the component
*/
int orte_errmgr_bproc_open(void)
{
int id, tmp;
id = mca_base_param_register_int("errmgr", "bproc", "debug", NULL, 0);
mca_base_param_lookup_int(id, &tmp);
if (tmp) {
orte_errmgr_bproc_globals.debug = true;
} else {
orte_errmgr_bproc_globals.debug = false;
}
return ORTE_SUCCESS;
}
/*
* Close the component
*/
int orte_errmgr_bproc_close(void)
{
return ORTE_SUCCESS;
}
orte_errmgr_base_module_t*
orte_errmgr_bproc_component_init(bool *allow_multi_user_threads, bool *have_hidden_threads,
int *priority)
{
if (orte_errmgr_bproc_globals.debug) {
opal_output(0, "errmgr_bproc_init called");
}
/* If we are an HNP or an orted, then don't pick us! */
if (orte_process_info.seed || orte_process_info.daemon) {
/* don't take me! */
return NULL;
}
/* Return a module (choose an arbitrary, positive priority --
absolutely must be higher than the proxy component
*/
*priority = 100;
/* no part of OpenRTE allows or has threads */
*allow_multi_user_threads = false;
*have_hidden_threads = false;
/* define the replica for us to use - for now, just point
* to the name service replica
*/
orte_errmgr_bproc_globals.replica = orte_process_info.ns_replica;
initialized = true;
return &orte_errmgr_bproc;
}
/*
* finalize routine
*/
int orte_errmgr_bproc_finalize(void)
{
if (orte_errmgr_bproc_globals.debug) {
opal_output(0, "[%lu,%lu,%lu] errmgr_bproc_finalize called",
ORTE_NAME_ARGS(orte_process_info.my_name));
}
initialized = false;
/* All done */
return ORTE_SUCCESS;
}