1
1
openmpi/orte/mca/schizo/base/schizo_base_frame.c

80 строки
2.1 KiB
C
Исходник Обычный вид История

2015-01-25 20:16:45 -08:00
/*
* Copyright (c) 2015 Intel, Inc. All rights reserved.
* Copyright (c) 2015 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
2015-01-25 20:16:45 -08:00
* $COPYRIGHT$
2015-06-23 20:59:57 -07:00
*
2015-01-25 20:16:45 -08:00
* Additional copyrights may follow
2015-06-23 20:59:57 -07:00
*
2015-01-25 20:16:45 -08:00
* $HEADER$
*/
#include "orte_config.h"
#include "orte/constants.h"
#include <string.h>
#include "orte/mca/mca.h"
2015-01-25 20:16:45 -08:00
#include "opal/util/argv.h"
#include "opal/util/output.h"
#include "opal/mca/base/base.h"
#include "orte/runtime/orte_globals.h"
#include "orte/util/show_help.h"
#include "orte/mca/errmgr/errmgr.h"
#include "orte/mca/schizo/base/base.h"
2015-01-25 20:16:45 -08:00
/*
* The following file was created by configure. It contains extern
* statements and the definition of an array of pointers to each
* component's public mca_base_component_t struct.
*/
#include "orte/mca/schizo/base/static-components.h"
2015-01-25 20:16:45 -08:00
/*
* Global variables
*/
orte_schizo_base_t orte_schizo_base = {{{0}}};
orte_schizo_base_module_t orte_schizo = {
orte_schizo_base_parse_cli,
orte_schizo_base_parse_env,
orte_schizo_base_setup_fork,
orte_schizo_base_setup_child
};
static int orte_schizo_base_close(void)
2015-01-25 20:16:45 -08:00
{
/* cleanup globals */
OPAL_LIST_DESTRUCT(&orte_schizo_base.active_modules);
2015-01-25 20:16:45 -08:00
return mca_base_framework_components_close(&orte_schizo_base_framework, NULL);
2015-01-25 20:16:45 -08:00
}
/**
* Function for finding and opening either all MCA components, or the one
* that was specifically requested via a MCA parameter.
*/
static int orte_schizo_base_open(mca_base_open_flag_t flags)
2015-01-25 20:16:45 -08:00
{
int rc;
/* init the globals */
OBJ_CONSTRUCT(&orte_schizo_base.active_modules, opal_list_t);
2015-01-25 20:16:45 -08:00
/* Open up all available components */
rc = mca_base_framework_components_open(&orte_schizo_base_framework, flags);
2015-01-25 20:16:45 -08:00
/* All done */
return rc;
}
MCA_BASE_FRAMEWORK_DECLARE(orte, schizo, "ORTE Schizo Subsystem",
NULL, orte_schizo_base_open, orte_schizo_base_close,
mca_schizo_base_static_components, 0);
2015-01-25 20:16:45 -08:00
OBJ_CLASS_INSTANCE(orte_schizo_base_active_module_t,
2015-01-25 20:16:45 -08:00
opal_list_item_t,
NULL, NULL);