2007-07-20 05:34:02 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Los Alamos National Security, LLC.
|
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2008-11-01 00:10:00 +03:00
|
|
|
#ifndef MCA_ROUTED_RADIX_H
|
|
|
|
#define MCA_ROUTED_RADIX_H
|
2007-07-20 05:34:02 +04:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
#include "orte_config.h"
|
2007-07-20 05:34:02 +04:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
#include "orte/mca/routed/routed.h"
|
2007-07-20 05:34:02 +04:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
BEGIN_C_DECLS
|
2007-07-20 05:34:02 +04:00
|
|
|
|
2008-11-01 00:10:00 +03:00
|
|
|
typedef struct {
|
|
|
|
orte_routed_component_t super;
|
|
|
|
int radix;
|
|
|
|
} orte_routed_radix_component_t;
|
|
|
|
ORTE_MODULE_DECLSPEC extern orte_routed_radix_component_t mca_routed_radix_component;
|
2007-07-20 05:34:02 +04:00
|
|
|
|
2008-11-01 00:10:00 +03:00
|
|
|
extern orte_routed_module_t orte_routed_radix_module;
|
2007-07-20 05:34:02 +04:00
|
|
|
|
|
|
|
END_C_DECLS
|
|
|
|
|
|
|
|
#endif
|