1
1

Remove no longer needed component

This commit was SVN r26578.
Этот коммит содержится в:
Ralph Castain 2012-06-08 00:18:59 +00:00
родитель 980768965f
Коммит ffcca0185a
4 изменённых файлов: 0 добавлений и 1159 удалений

Просмотреть файл

@ -1,36 +0,0 @@
#
# Copyright (c) 2012 Los Alamos National Security, LLC.
# All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
sources = \
routed_radix2.h \
routed_radix2.c \
routed_radix2_component.c
# Make the output library in this directory, and name it either
# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la
# (for static builds).
if MCA_BUILD_orte_routed_radix2_DSO
component_noinst =
component_install = mca_routed_radix2.la
else
component_noinst = libmca_routed_radix2.la
component_install =
endif
mcacomponentdir = $(pkglibdir)
mcacomponent_LTLIBRARIES = $(component_install)
mca_routed_radix2_la_SOURCES = $(sources)
mca_routed_radix2_la_LDFLAGS = -module -avoid-version
noinst_LTLIBRARIES = $(component_noinst)
libmca_routed_radix2_la_SOURCES = $(sources)
libmca_routed_radix2_la_LDFLAGS = -module -avoid-version

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -1,30 +0,0 @@
/*
* Copyright (c) 2012 Los Alamos National Security, LLC.
* All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#ifndef MCA_ROUTED_RADIX2_H
#define MCA_ROUTED_RADIX2_H
#include "orte_config.h"
#include "orte/mca/routed/routed.h"
BEGIN_C_DECLS
typedef struct {
orte_routed_component_t super;
int radix;
} orte_routed_radix2_component_t;
ORTE_MODULE_DECLSPEC extern orte_routed_radix2_component_t mca_routed_radix2_component;
extern orte_routed_module_t orte_routed_radix2_module;
END_C_DECLS
#endif

Просмотреть файл

@ -1,59 +0,0 @@
/*
* Copyright (c) 2012 Los Alamos National Security, LLC.
* All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "orte_config.h"
#include "orte/constants.h"
#include "opal/mca/base/base.h"
#include "opal/mca/base/mca_base_param.h"
#include "orte/mca/routed/base/base.h"
#include "routed_radix2.h"
static int orte_routed_radix2_component_query(mca_base_module_t **module, int *priority);
/**
* component definition
*/
orte_routed_radix2_component_t mca_routed_radix2_component = {
{
/* First, the mca_base_component_t struct containing meta
information about the component itself */
{
ORTE_ROUTED_BASE_VERSION_2_0_0,
"radix2", /* MCA component name */
ORTE_MAJOR_VERSION, /* MCA component major version */
ORTE_MINOR_VERSION, /* MCA component minor version */
ORTE_RELEASE_VERSION, /* MCA component release version */
NULL,
NULL,
orte_routed_radix2_component_query
},
{
/* This component can be checkpointed */
MCA_BASE_METADATA_PARAM_CHECKPOINT
}
}
};
static int orte_routed_radix2_component_query(mca_base_module_t **module, int *priority)
{
mca_base_component_t *c = &mca_routed_radix2_component.super.base_version;
mca_base_param_reg_int(c, NULL,
"Radix2 to be used for routed radix2 tree",
false, false, 32, &mca_routed_radix2_component.radix);
*priority = 65;
*module = (mca_base_module_t *) &orte_routed_radix2_module;
return ORTE_SUCCESS;
}