1 /*
2 * Copyright (c) 2007 Los Alamos National Security, LLC.
3 * All rights reserved.
4 * Copyright (c) 2016 Intel, Inc. All rights reserved.
5 * $COPYRIGHT$
6 *
7 * Additional copyrights may follow
8 *
9 * $HEADER$
10 */
11
12 #ifndef MCA_ROUTED_RADIX_H
13 #define MCA_ROUTED_RADIX_H
14
15 #include "orte_config.h"
16
17 #include "orte/mca/routed/routed.h"
18
19 BEGIN_C_DECLS
20
21 typedef struct {
22 orte_routed_component_t super;
23 int radix;
24 } orte_routed_radix_component_t;
25 ORTE_MODULE_DECLSPEC extern orte_routed_radix_component_t mca_routed_radix_component;
26
27 extern orte_routed_module_t orte_routed_radix_module;
28
29 END_C_DECLS
30
31 #endif