1
1
openmpi/ompi/mca/sbgp/basesmuma/sbgp_basesmuma.h
Nathan Hjelm b68d66bb9b MCA: Add the project/project version to the MCA base component
This commit adds support for project_framework_component_* parameter
matching. This is the first step in allowing the same framework name
in multiple projects. This change also bumps the MCA component version
to 2.1.0.

All master frameworks have been updated to use the new component
versioning macro. An mca.h has been added to each project to add a
project specific versioning macro of the form
PROJECT_MCA_VERSION_2_1_0.

Signed-off-by: Nathan Hjelm <hjelmn@me.com>
2015-03-27 10:59:04 -06:00

74 строки
1.6 KiB
C

/*
* Copyright (c) 2009-2012 Oak Ridge National Laboratory. All rights reserved.
* Copyright (c) 2009-2012 Mellanox Technologies. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#ifndef MCA_BCOL_basesmuma_EXPORT_H
#define MCA_BCOL_basesmuma_EXPORT_H
#include "ompi_config.h"
#include "mpi.h"
#include "ompi/mca/mca.h"
#include "ompi/mca/sbgp/sbgp.h"
#include "opal/mca/mpool/mpool.h"
#include "ompi/request/request.h"
#include "ompi/proc/proc.h"
BEGIN_C_DECLS
#ifdef HAVE_SCHED_YIELD
# include <sched.h>
# define SPIN sched_yield()
#else /* no switch available */
# define SPIN
#endif
/**
* Structure to hold the basic shared memory coll component. First it holds the
* base coll component, and then holds a bunch of
* sm-coll-component-specific stuff (e.g., current MCA param
* values).
*/
struct mca_sbgp_basesmuma_component_t {
/** Base coll component */
mca_sbgp_base_component_2_0_0_t super;
};
/**
* Convenience typedef
*/
typedef struct mca_sbgp_basesmuma_component_t
mca_sbgp_basesmuma_component_t;
/*
** Base sub-group module
**/
struct mca_sbgp_basesmuma_module_t {
/** Collective modules all inherit from opal_object */
mca_sbgp_base_module_t super;
};
typedef struct mca_sbgp_basesmuma_module_t mca_sbgp_basesmuma_module_t;
OBJ_CLASS_DECLARATION(mca_sbgp_basesmuma_module_t);
/**
* Global component instance
*/
OMPI_MODULE_DECLSPEC extern mca_sbgp_basesmuma_component_t mca_sbgp_basesmuma_component;
END_C_DECLS
#endif /* MCA_BCOL_basesmuma_EXPORT_H */