File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ typedef void (*orte_rml_module_purge_fn_t)(orte_process_name_t *peer);
250
250
/**
251
251
* RML internal module interface - these will be implemented by all RML components
252
252
*/
253
- typedef struct {
253
+ typedef struct orte_rml_base_module_t {
254
254
/* pointer to the parent component for this module */
255
255
struct orte_rml_component_t * component ;
256
256
/** Ping process for connectivity check */
@@ -640,7 +640,7 @@ typedef void (*orte_rml_module_close_conduit_fn_t)(orte_rml_base_module_t *mod);
640
640
* this structure, called mca_rml_[component name]_component, must
641
641
* exist in any RML component.
642
642
*/
643
- struct orte_rml_component_3_0_0_t {
643
+ typedef struct orte_rml_component_t {
644
644
/* Base component description */
645
645
mca_base_component_t base ;
646
646
/* Base component data block */
@@ -653,9 +653,7 @@ struct orte_rml_component_3_0_0_t {
653
653
orte_rml_component_get_contact_info_fn_t get_contact_info ;
654
654
orte_rml_component_set_contact_info_fn_t set_contact_info ;
655
655
orte_rml_module_close_conduit_fn_t close_conduit ;
656
- };
657
- /** Convienence typedef */
658
- typedef struct orte_rml_component_3_0_0_t orte_rml_component_t ;
656
+ } orte_rml_component_t ;
659
657
660
658
661
659
You can’t perform that action at this time.
0 commit comments